(function ($) {

    $.fn.localeSelect = function () { 
		$('li.purchase').html("click to buy in that country");
			var usa = " in the <strong>USA</strong>",
				cr = " in the <strong>Czech Republic</strong>",
				sp = " in <strong>Spain</strong>",
				po = " in <strong>Portugal</strong>",
				uae = " in the <strong>UAE</strong>";
				ger = " in <strong>Germany</strong>",
				slo = " in <strong>Republic of Slovakia</strong>",
				pol = " in <strong>Poland</strong>",
				can = " in <strong>Canada</strong>",
				nz = " in <strong>New Zealand</strong>";	
			$(this).hover(
				function () {
					var varname = eval($(this).attr("class")),
						replaceMe = $('li.purchase').text();
					$('li.purchase').html(replaceMe.replace('in that country', varname));
				},
				function () {
					$('li.purchase').html("click to buy in that country");
				}
			)	
    };
	
	$.fn.moreProdInfo = function () { 
		$(this).click(function () {
			$(this).parent().parent().find(".cost-includes").slideToggle("fast");
		});
	};		
	

})(jQuery);
