$(document).ready(function() {

	// NAV DROPDOWNS
	$('#navigation li').hover(function() {
		$(this).addClass('over');
	}, function() {
		$(this).removeClass('over');
	});

  	//TABS
  	$('#tabs').tabs();
	$('#tabs ul li a').click(function () {
		location.hash = $(this).attr('href');
		$('html, body').animate({scrollTop:0}, 'slow');
	});

  	if(document.location.hash!='') {
    	//get the index from URL hash
    	tabSelect = document.location.hash.substr(1,document.location.hash.length);
    	$("#tabs").tabs('select',tabSelect-1);
		$('html, body').animate({scrollTop:0}, 'slow');
		
	}

});
