$(document).ready(function() {//REMOVES JAVASCRIPT FIX CLASSES	$('#portfolio-content').removeClass("js-off-overflow");	$('.portfolio-thumbs').removeClass("js-off-position");	//INITIALIZES PRETTYPHOTO PLUGIN	$("a[rel^='prettyPhoto']").prettyPhoto({theme:'light_square'}); //choose between different styles / dark_rounded / light_rounded / dark_square / light_square / facebook /	//NAVIGATION		$('#navigation').localScroll();	$('#navigation li a').click( function () {		$('#navigation li a').removeClass("active");		$(this).addClass("active");	});	$('#logo h1 a').click(function(){ 				$('#navigation li a').removeClass("active");		$('#navigation li:first a').addClass("active");		$('html, body').animate({scrollTop: 0});			});	//PORTFOLIO NAVIGATION		$("ul.portfolio-nav").tabs("#portfolio > #portfolio-content > ul.portfolio-thumbs", {effect: 'fade', fadeInSpeed: 800, fadeOutSpeed: 800});// PORTFOLIO HOVER EFFECT	 $('ul.portfolio-thumbs li').hover(function(){           $(".overlay", this).stop().animate({top:'0px'},{queue:false,duration:300});       }, function() {          $(".overlay", this).stop().animate({top:'190px'},{queue:false,duration:300});      });  	//TOGGLE PANELS});	//END of jQuery
