function showAjaxLoader(msg) {
	if($('#ajaxLoader').length == 0){
		$('body').prepend('<div id="ajaxLoader" style="display:none; position:absolute; background-color:red; color:white;"><span id="ajaxLoaderMsg"></span><br/><img src="/images/design/ajax-loader.gif" alt="Loading"/></div>');
	}

	if(!msg) {
		msg = "Loading...";
	}

	$('#ajaxLoaderMsg').html(msg); $('#ajaxLoader').css("top",$(window).scrollTop()+$(window).height()/2).css("left",$(window).width()/2).show();
}

function hideAjaxLoader() {
	$('#ajaxLoader').hide();
}

function clearNewsletter(jctrl) {
	if(jctrl.val() == "Your email address") {
		jctrl.val("");
	}
}

function popup(url) {
	window.open(url,"cvnInfo","width=300,height=450,scrollbars=1");
}

function getCartCount() {
	$.ajax({url: "/cart/getProductCount.php", 
		    success: function(msg){ 
				if(msg.length > 0) {
				     $("#cartCount").html("("+msg+")");
				}
			}
		});
}

//Put any things we want to do onload for all pages
$(document).ready(function() {
	getCartCount();
});
