// JavaScript Document

$(document).ready(function(){
	
	// gallery images
	$("a.show-details, a.thumb").click(function(){ 
	var productUrl = $(this).attr('href');
	var str = $(this).attr('class');
	strArray = str.split(" ");
	var inWidth = strArray[1];
	var inHeight = strArray[2];
	
	$('a.show-details, a.thumb').colorbox({href:productUrl+" div#product-details", 
		innerHeight:inHeight,
        innerWidth:inWidth,
		speed:500});
	
	});
	
	// admin thumb enlargement
	$("a.admin-thumb").colorbox();
	
	// youtube video
	$(".youtube").colorbox({iframe:true, innerWidth:840, innerHeight:503});




});

