$j(document).ready(function(){
	//Instatiate tooltips
	$j(".monthly").tipsy({fade: false});
	$j(".info").tipsy();
	$j(".order-link").tipsy();
	$j(".tooltip").tipsy();
	//Preload images in css to fix hover bg image lag
 	$j.preloadCssImages();
 	//shopping mouse overs
 	var opacity = 0.7;
 	$j("#canada").css('opacity',opacity);
 	$j("#cart").css('opacity',opacity);
 	$j("#credit-card").css('opacity',opacity);
 	$j("#allcards").hide();
 	$j("#canada").hover( function(){
 		$j(this).css('opacity','1');
 	}, function(){
 		$j(this).css('opacity',opacity);
 	});
 	$j("#cart").hover( function(){
 		$j(this).css('opacity','1');
 	}, function(){
 		$j(this).css('opacity',opacity);
 	});
 	$j("#credit-card").hover( function(){
 		$j(this).css('opacity','1');
 		$j("#allcards").show(100);
 	}, function(){
 		$j(this).css('opacity',opacity);
 		$j("#allcards").hide(100);
 	});
 	var orig_img = $j("#telephone img").attr("src");
 	var repl_img = "https://www.websavers.ca/wp/wp-content/themes/websavers/images/icons/skype2.png";
 	$j("#telephone a").hover( function(){
 		$j("#telephone #numbers").html("1-877-221-4678");
 		$j("#telephone img").attr("src",repl_img);
 	}, function(){
 		$j("#telephone #numbers").html("1-877-221-HOST");
 		$j("#telephone img").attr("src",orig_img);
 	});
});