$(document).ready(function() {
$("#contentopenclose").click( function() {
slideup = '-118px';
jQuery.each(jQuery.browser, function(i, val) {
   if(i=="msie" && jQuery.browser.version.substr(0,3)=="6.0"){
     slideup = '-130px';
}
 });
			if($("#contentslider").css('top') == '142px'){

			    	 $("#contentslider").animate({ top: slideup}, 500 )
				$("#openclose").attr("src","includes/imgs/info-open.png")	
		
			}
			else{
				$("#contentslider").animate({ top: "142px"}, 500 )
				$("#openclose").attr("src","includes/imgs/info-close.png")
			}
});



var bottomPX;

				$("#offer_open_img").bind('click', function() {

					if($("#specialoffers").css('bottom') == '-62px'){
						bottomPX = '30px';
						jQuery.each(jQuery.browser, function(i, val) {
			   			if(i=="msie" && jQuery.browser.version.substr(0,3)=="6.0"){
	    						bottomPX = '26px';
						}
 						});

					    	$("#specialoffers").animate({ bottom: bottomPX}, 500 )	
					}
					else{
						bottomPX = '-62px';
						$("#specialoffers").animate({ bottom: bottomPX}, 500 )	
					}
				});
 

});
