$(document).ready(function() {
	$(".cb a").hover(function() {
		$(this).find("img").attr("src", "coupon/dp-ho.png");
	}, function() {
		$(this).find("img").attr("src", "coupon/dp.png");
	});
	
	var date = new Date();
	date.setDate(date.getDate() + 14);
	
	var month = date.getMonth() + 1;
	month = month < 10 ? "0" + month: month;
	
	var day = date.getDate();
	day = day < 10 ? "0" + day: day;
	
	$("#expdate").text(month + "/" + day + "/" + date.getFullYear());
});
