jQuery(document).ready(function() {
													
    jQuery('#mycarousel').jcarousel({
       scroll: 1
    });

});


$(document).ready(function(){
	
$('#nav li.off a')
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 0)"}, 
			{duration:300})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 72px)"}, 
			{duration:300})
		})
	.mouseover(function(){
		$(this).children().stop().animate(
			{backgroundPosition:"(0 0)"}, 
			{duration:300})
		})
	.mouseout(function(){
		$(this).children().stop().animate(
			{backgroundPosition:"(0 -39px)"}, 
			{duration:300})
		})	

$('#nav li.off a').css( {backgroundPosition: "0 72px"} )
$('#nav li.off a span').css( {backgroundPosition: "0 -39px"} )


});