
$(function() {
	$("a.fancybox").fancybox();
	$("a[rel=fancybox]").fancybox();
	var mainImage = $('a[@rel=fancybox]:first').get(0);
	$("a[rel=mainImage]").click(function(e){
		e.preventDefault();
		$.fn.fancybox.start(mainImage, $.fn.fancybox.defaults);
	});


	$("form.f-sort select").bind('change', function(e) {
		window.location = this.value;
	});

	var lastProductListUrl = $.cookie('solveo-shop-last-products-list');
	if (lastProductListUrl === null) {
		$("div.backToList a").bind('click', function(e) {
			e.preventDefault();
			window.location = '/';
		});
	}
	else {
		$("div.backToList a").bind('click', function(e) {
			e.preventDefault();
			window.location = lastProductListUrl;
		});
	}
});
