$(document).ready(function(){$('.tab').click(function(){$(this).parent().parent().find('.selected').removeClass('selected');$(this).parent().addClass('selected');var type=$(this).attr('rel');$('.tab-content').hide();$('#'+type).show();window.location.hash=type+'-tab';if($.browser.msie){if(document.title.indexOf('#')>0){document.title=document.title.substr(0,document.title.indexOf('#'));}}
return false;});if(window.location.hash!=''){var hash=window.location.hash.substr(1,(window.location.hash.length-5));$('.tab[rel="'+hash+'"]').trigger('click');}else{$('.tab:first').trigger('click');}});