/**
 * Script obsahuje kod pro zobrazeni obrazku v js okne. Vyzaduje jquery framework
 */

$(document).ready(function(){
	$('.product-image a').click(function() {
		if ($(this).length > 0) {
			var image = new Image();
			image.alt = $(this).attr('title');
			image.onload = function() {
				js_fce_okno_auto(image.alt,image.src,image.width,image.height);
			}
			image.src = $(this).attr('href');
			return false;
		}
	});

	$("#zalozky a").has("img").click(function() {
		if ($(this).attr('href').match(/js_fce_okno/i))
			eval($(this).attr('href'));
		else {
			var image = new Image();
			image.alt = $(this).attr('title');
			image.onload = function() {
				js_fce_okno_auto(image.alt,image.src,image.width,image.height);
			}
			image.src = $(this).attr('href');
		}
		return false;
	});
});

