$(document).ready(function(){
	$("#recapitulationDelivery").wrap("<div id='recapitulationDeliveryTop'></div>").wrap("<div id='recapitulationDeliveryBottom'></div>");
	$("table.itemList").wrap("<div class='itemListTop'></div>").wrap("<div class='itemListBottom'></div>");
	$("table.itemList tbody tr:nth-child(odd)").addClass('odd');
	$("table.itemList tbody tr:nth-child(even)").addClass('even');
	$('#eshopItemDetailImgThumbs a').bind('click', eshopShowDetailImage);
	// pridat check, at se to dela jen pro IE 6
	//$('#eshopItemsList div.item img').click(function(){$(this).parent().parent().click();});
	//$('#eshopItemsList div.item img').click(function(){alert($(this).parent().parent().attr('href'));});
	if($.browser.msie)	{
		$('#eshopItemsList div.item img').click(function(){
			document.location = 'http://'+document.domain+$(this).parent().parent().attr('href');
		});
	}
	$('#formNewsletter').ajaxForm({success: showResponse}); 

	$('#dialog').jqm();
});

function eshopShowDetailImage()
{
	//alert($(this));
	$('#eshopItemDetailImg img').attr({src : $(this).attr('href')});
	return false;
}

function showResponse(responseText, statusText)
{
	//alert(responseText);
	$('#dialog div.content').html(responseText);
	$('#dialog').jqmShow();
	$('#formNewsletter').clearForm();
}

