// PNG fix
$(document).ready(function(){ 
	$(document).pngFix(); 
}); 

// Products tabs
$(document).ready(function() {

	//Default Action
	$(".tab_content").hide(); //Hide all content
	$("ul.tabs li:first").addClass("active").show(); //Activate first tab
	$(".tab_content:first").show(); //Show first tab content
	
	//On Click Event
	$("ul.tabs li").click(function() {
		$("ul.tabs li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".tab_content").hide(); //Hide all tab content
		var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active content
		return false;
	});

});


// Zoom
$(function() {
	$(".jqzoom").jqzoom();


	var options1 =
	{
		zoomWidth: 440,
		zoomHeight: 300,
		position : 'right',
		lens:true,
//		zoomType:'reverse',
		hideEffect:'fadeout',
		title :false
	}
	var options2 =
	{
		zoomWidth: 440,
		zoomHeight: 300,
		position : 'right',
		yOffset :-222,
		xOffset :10,
		lens:true,
//		zoomType:'reverse',
		hideEffect:'fadeout',
		title :false
	}

	$(".jqzoom1").jqzoom(options1);
	$(".jqzoom2").jqzoom(options2);

});

//Colorbox
$(document).ready(function(){
	$(".single").colorbox({});
});
