$(document).ready(function() {

var topPX;

				$("#offer_open_img").bind('click', function() {

					if($("#specialoffers").css('top') == '0px'){
						topPX = '-95px';
						jQuery.each(jQuery.browser, function(i, val) {
			   			if(i=="msie" && jQuery.browser.version.substr(0,3)=="6.0"){
	    						topPX = '-86px';
						}
 						});

					    	$("#specialoffers").animate({ top: topPX}, 500 )	
					}
					else{
						topPX = '0px';
						$("#specialoffers").animate({ top: topPX}, 500 )	
					}
				});
 

});
