$(document).ready(function () {
	$('#slide1').innerfade({
        speed: 3000,
        timeout: 7000,
        type: 'sequence',
        containerheight: '150px'
    });
    
  	$('div.jimgMenu ul li a').hover(function() {
  		// if the element is currently being animated (to a easeOut)...
  		if ($(this).is(':animated')) {
  		  $(this).stop().animate({width: "310px"}, {duration: 450, easing:"easeOutQuad"});
  		} else {
  		  // ease in quickly
  		  $(this).stop().animate({width: "310px"}, {duration: 400, easing:"easeOutQuad"});
  		}
  		}, function () {
  		// on hovering out, ease the element out
  		if ($(this).is(':animated')) {
  		  $(this).stop().animate({width: "60px"}, {duration: 400, easing:"easeInOutQuad"})
  		} else {
  		  // ease out slowly
  		  $(this).stop('animated:').animate({width: "60px"}, {duration: 450, easing:"easeInOutQuad"});
  		}
  	});
});
