$(document).ready(function() {
	
	Cufon.replace('ul.contents_list, .big_text');
	
	$("input.buyyoursnow").hover(
	  function () {
		$(this).addClass("iebuy_hover");
	  },
	  function () {
		$(this).removeClass("iebuy_hover");
	  }
	);
	
	$('.buy_now_sticker').hover(
		function(){ // Change the input image's source when we "roll on"
			$(this).attr({ src : 'images/buy_now_on.png'});
		},
		function(){ // Change the input image's source back to the default on "roll off"
			$(this).attr({ src : 'images/buy_now_off.png'});             
	});

	
}); 





