// Dom
$(document).ready(function(){
	
	// Animated menu
	$('#menu li a').hover(
	  function () {
		 
		 if ($(this).attr('class') != 'active'){;
			 
			// $returnWidth = $(this).width();
			  $(this).animate({ fontSize: 22 }, 70 );
			 }
		  },
		  function () {
			  $(this).animate({ fontSize: 16  }, 70 );
		  }
		  );
	
	// Fading slideshow on homepage
	$('#slideArea').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
}); 


// IE6 PNG Fix
if (jQuery.browser.msie) { if(parseInt(jQuery.browser.version) == 6) $("img").pngfix(); }

