$(document).ready(function() {
	$('ul.sf-menu').superfish({ 
			pathClass:  'current',
            delay:       1000,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast'                           // faster animation speed 

	});
	$("a.tabcat").mouseover(function () {
        	$(this).addClass("active");
        	var content_tab = $(this).attr("title");
        	$("#"+content_tab).slideDown();
		});
	$(".home-product-box").mouseleave(
		function () {
		$(".active").removeClass("active");
		$(".content").slideUp();
		});
	$('.rounded-box').cornerz();
	$('.rounded-corners').cornerz();
	$('.top-rounded-corners').cornerz({radius: 20, corners: "tl tr"});
	$('.bottom-rounded-corners').cornerz({radius: 20, corners: "bl br"});
	$("a.tab").click(function () {
		$(".active").removeClass("active");
        	$(this).addClass("active");
        	$(".content").slideUp();
        	var new_content = $(this).attr("title");
        	$("#"+new_content).slideDown();
		});

});
