/* 
 * DomReady
 */

$(document).ready(function() {
    //global
    $("a.thickbox_resized").fancybox();
    $("a.thickbox_resized").fancybox({
        'overlayShow'			: false,
        'zoomSpeedIn'			: 200,
        'zoomSpeedOut'			: 200
    });

    //for catalog
    $(".fancy a.single_3").fancybox();
	$("a.single_3").fancybox({
		'overlayShow'			: false,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500
	});
});// ready

        $(document).ready(function() {
        jQuery('#mycarousel').jcarousel({
        scroll: 1,
        visible:6
        });
        show_picture(0);
        });
        
         function show_picture(arg0,arg1){
        
        arg1 = arg1 ||  "#";
            //$('#mycarousel  li:first img').attr
            //$('#show_picture').html();
          var largePath;
          var largeAlt;
          if (arg0==0){
            //largePath = $('#mycarousel  li:first img').attr("src");
            eval($('#mycarousel  li:first a').attr("href"));
            return;
          }
          else{
            largePath = arg0;
          }

          $("#largeImg").attr({ src: largePath, width: 700, height: 435  });

          $("#largeImgHref").attr({href: arg1}) ;
          
        }//function

