/* Author: Yulian Netskov Yordanov - METRO CC BULGARIA */
/* JavaScript functions for MMail Accordeon */

    (function($) {
        $.fn.showSpecOffer = function(option) {
			var $this = $(this);
			if(option) {
				$this.stop().animate({'width':'160px'},500);
				$('.heading',$this).stop(true,true).fadeOut(700);
				$('.bgDescription',$this).stop(true,true).slideDown(550);
				$('.description',$this).stop(true,true).fadeIn();
			}
			else {
				$this.stop().animate({'width':'100px'},400);
				$('.heading',$this).stop(true,true).fadeIn();
				$('.description',$this).stop(true,true).fadeOut(400);
				$('.bgDescription',$this).stop(true,true).slideUp(600);
			};
		}
    })(jQuery);

	$(document).ready(function() {
		$('#accorHomeMM4').showSpecOffer(true);
		$('#accordionHomeMM > li').hover(
			function () {
				var $this = $(this);
				if ($this.attr('id') != 'accorHomeMM4') {
					$('#accorHomeMM4').showSpecOffer(false);
					$this.showSpecOffer(true);
				};
            },
			function () {
				var $this = $(this);
				if ($this.attr('id') != 'accorHomeMM4') {
					$this.showSpecOffer(false);
					$('#accorHomeMM4').showSpecOffer(true);
				};
			}
		);
	});

/* End Of File */
