$(document).ready(function(){
	//external link setup
	$("a[href^='http://']").each(function(){
		$(this).attr({
			href: "javascript:visit('" + $(this).attr('href') + "')"
		});
	});
	//background rollovers setup
	$(".rollover").hover(
		function () {
			var h = "0px -" + $(this).css("height");
			$(this).css("background-position",h);
		},
		function () {
			$(this).css("background-position","0px 0px");
		}
	);
	
	//Product List Item Background Color Hoverstate
	$('.productListItem').hover(function(){
		$(this).css('backgroundColor','#98ca7a');
	},function(){
		$(this).css('background','transparent');
	});
	//mailto setup
	$(".mailto").each(function(){
		var name = $(this).attr("title");
		var html = "<a href='mailto:" + name + "#'>" + name + "@email.com</a>";
		$(this).html(html);
	});

});
