$(function()
{
	if(!IS_MOBILE) {//prevent an error in mobile version
		$('.cart_form form').jqTransform();
	}
	$("a[rel^='product_gallery']").prettyPhoto();

	$('#more_images').click(function() {
		//get first gallery item and show them
		var link = $($('li.more_images_ico').next().next().find('a').get(0)).click();
	})
});