/*=========================================================
* WebSite : http://phileweb.com
* FileName : common.js
=========================================================*/
/*
*	1.HoverFade
*	2.RollOver
*	3.SlideToggle
*	4.Scroll
*/ 

/*------------------------------------------------------
//	1.HoverFade
/*-----------------------------------------------------*/
$(document).ready(function(){
	$("img.hoverFade").fadeTo(0,3,0);
	$("img.hoverFade").hover(function(){
		$(this).fadeTo(150,0.6);
	},
	function(){
		$(this).fadeTo(150,1.0)
	});
	
});

/*------------------------------------------------------
//	2.RollOver
/*-----------------------------------------------------*/
$(function(){
	imageOver();
})
function imageOver() {
	jQuery("img.btn").each(function() {
 

		var image = this.src;
		var extension = image.substr(image.lastIndexOf("."), image.length-1);
		var image_over = image.replace(extension, "_on"+extension);

		new Image().src = image_over;

		jQuery(this).hover(
			function(){this.src = image_over},
			function(){this.src = image}
		);
	});
}

/*------------------------------------------------------
//	3.SlideToggle
/*-----------------------------------------------------*/
$(document).ready(function(){
$(".productBox").css("display","none");

$("#productBt").click(function(){

$(this).next(".productBox:not(:animated)").slideToggle("fast");

$(this).toggleClass("active");
return false;
});
});





