$(window).ready(function()
{
	$('.product .pics a')
		.click(function(){
			$("#prodpic img").attr('src',$(this).attr('href'));
			$("#prodpic a").attr('href',$(this).attr('href').replace('/xl/','/'));
			return false;	
		});

	$("#prodpic a").colorbox({iframe:false});

	$("#prods-sort, #prods-select").change(function(){
		document.location = $(this).val();
	});

    $('#gallery a[href*=gal.php]:not(.link)').colorbox({width:"95%", height:"95%", iframe:true});
});
