/* -------------------------------------------------------------------------- */
/* goldstella.js
/* - zakladni JS soubor pro Goldstellu
/* !! vyzaduje JQuery
/* (c) Filip Novak, mame.napilno.cz, filip.novak@napilno.cz
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* sortiment - skryti doplnkovych fotek u produktu                            */
$(document).ready(function () {
	$('.productItemOtherImages').css('display', 'none');
});
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* antispamova ochrana e-mailovych adres                                      */
/* emailova adresa je tag s tridou "emailLink"                                */
/* pridava tridu "mailtoLink" (pro stylovani)                                 */
/* zapis: <span class="emailLink">jmeno(zavinac)domena.cz</span>              */
/* -------------------------------------------------------------------------- */
$(document).ready(function () {

	var emailLinkClass = 'emailLink';

	$('.' + emailLinkClass).each(function () {
		var linkTarget = $(this).html();
		linkTarget = linkTarget.replace('\(zavinac\)', '@');
		linkTarget = '<a href="mailto:' + linkTarget + '" class="mailtoLink" >' + linkTarget + '</a>';
		var x = $(this).replaceWith(linkTarget);
	});

});
/* -------------------------------------------------------------------------- */
