$(document).ready(function(){
	$("#coupon").hide();
	$("#coupon").before('<div id="coupon_link"><img id="target" width="450px" src="turn/coupon.png" alt="Coupon" /></div>');
	
	if (jQuery.browser.msie && (parseInt(jQuery.browser.version) <= 6)) {
	    $("#coupon_link").hide();
	    $("#coupon").show();
	} else {
	    $("#coupon_link").colorbox({inline:true, href:"#coupon", onLoad:function(){ $('#coupon').show(); }, onCleanup:function(){ $('#coupon').hide(); }, opacity:'0', width:'400px'});
/* 		$("#coupon_link").colorbox({inline:true, href:"#coupon", opacity:'0', width:'400px'}); */
	    $('#target').fold({side: 'right', directory: 'turn', maxHeight: '400', startingWidth: 165, startingHeight: 165});
	}
	
	if(jQuery.url.attr("anchor") == "coupon") {
		$("#coupon_link").trigger('click');
	}
});