function addfav() {
	if (document.all) {
		window.external.AddFavorite("http://www.anan-promotion.si","Anan");
	} //end if
} //end function addfav

function checkEmail(email_str) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email_str)) {
		return true;
	} else {
		return false;
	} //end if
} //end function checkEmail

function popZoom(strUrl) {
	window.open(strUrl,'popZoom',
	"height=740, width=770,location=0,menubar=0,resizable=1,status=0,titlebar=1,toolbar=0,scrollbars=1", true);
}

function popup( turl, tname, twidth, theight ) {
	window.open(turl, tname, 'status=0,directories=0,toolbar=0,menubar=0,resizable=0,scrollbars=0,location=0,width=' + twidth + ',height=' + theight);
}

$(document).ready(function() {
	//search
	$("#search-form button").click(function() {
		$("#search-form").submit();
		return false;
	});
	
	//newsletter submit
	$("#newsletter button").click(function() {
		
		$("#newsletter").submit();
		return false;
	});
	$("#newsletter").submit(function() {
		if( checkEmail( $("#newsletter input[name=email]").val() ) ) {
			return true;
		} else {
			alert("Neveljaven e-mail naslov!");
			return false;
		} //end if
	});
	
	//narocite katalog submit
	$("#narocite button").click(function() {
		$("#narocite").submit();
		return false;
	});
	
	$("body.domov .prod").each(function() {
		if( $(this).children("h3").text() == "e-Katalog" ) {
			$(this).find("a").attr("target", "_blank");
		} //end if
	});
	
	//open popup for images
	$(".xthickbox").click(function() {
		popup( $(this).attr("href") , "image_zoom", 450, 490);
		return false;
	});
});