jQuery(document).ready
(
	function()
	{
/*		jQuery("img").lazyload({ 
		    placeholder : "images/grey.gif",
		    effect : "fadeIn" 
		});
*/		
		jQuery(".knife_box_hide").hide();
		jQuery(".knife_box_show").hide();
		jQuery(".knife_box_show").siblings().children(".alt_image").bind("click", swapImage);
		
		var pathname = window.location.pathname;
		jQuery("a[href$='"+pathname+"']").addClass("current");
		
	}
);
function showBox()
{
	jQuery(this).hide(300);
	jQuery(this).siblings().show(300);
	jQuery(this).siblings().children().show();
	jQuery(this).siblings().children(".alt_image").bind("click", swapImage);
}
function hideBox()
{
	jQuery(this).hide(300);
	jQuery(this).siblings().hide(500);
	jQuery(".knife_box_show").show(300);
}
function swapImage()
{
/*	$(this).siblings(".main_image").removeClass("main_image", addAlt);*/
	jQuery(this).siblings().removeClass("main_image");
	jQuery(this).siblings().addClass("alt_image");
	jQuery(this).siblings().bind("click", swapImage);
	jQuery
	jQuery(this).unbind("click",swapImage);
	jQuery(this).addClass("main_image");
	jQuery(this).removeClass("alt_image");
}
