jQuery(document).ready(function(){    
    jQuery('.product-img-box div ul li a').slimbox();
    jQuery('.schlide').gridgallery({layout:'cols',effect:'slide'});
});

function launchSlimboxGalleryProduct(){
    a = new Array();
    s = jQuery(".product-img-box p.product-image-zoom span").html();
    //s = jQuery(s).attr("src");
    //console.log(jQuery(s).children())
   // console.log(s)
    iStartAt = 0;
    jQuery.each(jQuery('.product-img-box div ul li a'), function(i){
	ae = new Array()
	ae[0] = this.href + "";
	ae[1] = jQuery(this).attr("alt") + "";
	a[i] = ae;
	//console.log(ae[0])
	if(s == ae[0]){
	    iStartAt = i;
	}
    })
    //console.log(a)
    jQuery.slimbox(a,iStartAt)
}
