$(document).ready(function()
{
	if ( $.browser.msie ) 
	{
		 $(".topmenus > ul > li:last-child").addClass("last-child");
		 $(".topmenus > ul > li:last-child").css("background","none");
		 $("#footer ul.bottom_menus > li:first-child").addClass("first-child");
		 $("#footer ul.bottom_menus > li:last-child").addClass("last-child");	
		 $("#trigger_list ul li:last-child").addClass("last-child");
		 $(".good_contents .column:last-child").addClass("last-child");	
	}	
	
	$(".tooltip").tipTip({maxWidth: "auto", edgeOffset: 10});
	

     $('ul.sf-menu').superfish({ 
            delay: 200,												// delay on mouseout
            animation: {opacity:'show',height:'show'},
            autoArrows: false,										// disable generation of arrow mark-up 
            dropShadows: false,									// disable drop shadows 
            speed: "fast",
			pause:false
     });

	$("#trigger_opener").click(function()
	{
			if($(this).hasClass("open"))
			{
				$(this).removeClass("open");
				$("#trigger_list").animate({width: 'toggle'});			
			}else{
				$(this).addClass("open");
				$("#trigger_list").animate({width: 'toggle'});
			}
			
			return false;
	});	

	
	 $("#toTop").scrollToTop({speed:500,start:100});
	
	//$("a[rel^='prettyPhoto']").prettyPhoto();
	$("a[rel^='prettyPhoto']").prettyPhoto({overlay_gallery: false});
	
	$("#special_promo_package").click(function()
	{
			$(".inputx input").removeAttr("checked");
			$("#OrderLogoPackageId").val("27");
			$("#packageForm").submit();
			
			return false;
	});
	
});

