Coupon = {
	init : function () {
		$('A.printMe').bind('click', Coupon.printIt);
	},
	printIt : function () {
		var win = window.open('', 'Image', 'resizable=no, width=400px, height=200px');
		if (win.document) {
			win.document.writeln('<img src="'+ $(this).attr('href') +'" alt="image" />');
			win.document.close();
			win.focus();
			win.print();
		}
		return false;
	}
}
$(document).ready(function () {
	Coupon.init();
});
