// JavaScript Document

$(function() {
		jQuery('#mycarousel').jcarousel({
        vertical: false,
        scroll: 2,
		visible: 2,
		wrap:'both'
    });
		
	$(document).pngFix();
	
		// set opacity to nill on page load
		$("dl.menu img").css("opacity","0");
		// on mouse over
		$("dl.menu img").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, "slow");
		});
		
		
		
			
	});
