$(document).ready(function() {


	$('#showcontent').toggle(
   function()
   {
   $('#offers').animate({
    opacity: "0.1"
}, 1500);
      $('#specialoffers').animate({
    opacity: "0.1"
}, 1500, function(){
		$('#showcontent').attr("src", 'imgs/fader-open.gif')
	});
   },
   function()
   {
      $('#offers').animate({
    opacity: "1"
}, 1500);
      $('#specialoffers').animate({
    opacity: "1"
      }, 1500, function(){
		$('#showcontent').attr("src", 'imgs/fader-close.gif')
	});
   });
});
