$(document).ready(function(){	
	refresh_clearance();	
});


function refresh_clearance(){
	$('img.special').one('load',function() {
	 	var product_image_width = $(this).width();
		
		var special_width;
		
		if (product_image_width > 300 && $(this).hasClass('new')){
			special_width = 99;
			$(this).parent().prepend('<img src="images/globewest/newrelease_large.gif" class="special_img"/>');	
		}else if ($(this).hasClass('new')){			
			special_width = 50;
			$(this).parent().prepend('<img src="images/globewest/newrelease_small.gif" class="special_img"/>');		
		}
		
		var clearance_image = $('.special_img', $(this).parent());
		$(this).parent().css('position','relative');
		if ($(this).css('float') == 'left'){
			$(this).parent().css('float','left');
		}		
		clearance_image.css('position','absolute');
		clearance_image.css('z-index','1');

		var left = product_image_width - special_width;
		clearance_image.css('left',left+'px');
		clearance_image.css('top','0px');
		clearance_image.css('border','none');		
		
		if ($.browser.msie && $.browser.version.substr(0,1)<7) {
			//png fix
			 //DD_belatedPNG.fix(".special_img"); 
		}
	}).each(function() {
	 if(this.complete) $(this).trigger('load');
	});

}

