// JavaScript Document
var $j = jQuery.noConflict();


$j(document).ready(function(){	
							
							
$j("td.photogalleryItem").find("a").each(function(){
    var link = $j(this).attr("href");
    var img = $j(this).find("img").attr("src");

	$j(this).parent().html("<a href='"+link+"' class='group fancybox' rel='group'><img src='"+img+"'></a>");
});


 $j("#header-slider").easySlider({
		controlsShow: false,
		pause: 3000,
		auto: true,
		continuous: true
	});

 $j("li.productbox").find("a").addClass("iframe productbox");
 
 $j("a.fancybox").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true }); 
 $j("a.productbox").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': false, 'frameWidth': 800, 'frameHeight':600 }); 

$j('table.photogalleryTable').hide();
$j('table.photogalleryTable td.photogalleryItem:not(:first)').hide();
$j('table.photogalleryTable').show();
 

});
