
//$(document).ready(function(){
//	$("li").mouseover(function(){
//		$(this).stop().animate({height:'550px'},{queue:false, duration:1600, easing: 'easeOutBounce'});
//	});
//
//	$("li").mouseout(function(){
//		$(this).stop().animate({height:'50px'},{queue:false, duration:1600, easing: 'easeOutBounce'});
//	});
//
//});
$().ready(function() {
	$('.kwicks').kwicks({
		max : 205,
		spacing : 5
	});
});
		
$(document).ready(function() {
	$("ul#nav li a").addClass("js");
	$("ul#nav li a").hover(
      function () {
        $(this).stop(true,true).animate({backgroundPosition:"(0 0)"}, 200);
        $(this).animate({backgroundPosition:"(0 -5px)"}, 150);
      }, 
      function () {
        $(this).animate({backgroundPosition:"(0 -149px)"}, 200);

      }
    );

});
