$(document).ready(function(){

	/*$(".item").hover(
        function () {
		$(this).children("ul").fadeIn('slow');
        },function(){
		$(this).children("ul").fadeOut('slow');
	})*/;//hover
	$(".product .images a").colorbox({transition:'fade'});
	
	$(".product").each(function(){
		var w= $(this).children('.productImages').css('width');
		//$(this).children('.productDesc').css({width:w});
		//images are replaced element, this fails
	 })
	
})