$(document).ready(function() { 
 
    $('.picAlive').mouseover(function() {
		  var oldHeight = $(this).height();
		  var oldWidth = $(this).width();
		  var newHeight = $(this).height() + 25;
		  var newWidth = $(this).width() + 25;
		  
		  $(this).animate({
			width: newWidth,
			height: newHeight
		 }, 900, "easeInElastic", function() {
			 $(this).animate({
				width: oldWidth,
				height: oldHeight
			 }, 1200, "easeOutElastic");
		  });
	});
    $('.picAlive2').mouseover(function() {
		  var oldHeight = $(this).height();
		  var oldWidth = $(this).width();
		  var newHeight = $(this).height() - 40;
		  var newWidth = $(this).width() - 40;
		  
		  $(this).animate({
			width: newWidth,
			height: newHeight
		 }, 600, "easeInElastic", function() {
			 $(this).animate({
				width: oldWidth,
				height: oldHeight
			 }, 900, "easeOutElastic");
		  });
	});
    
	/* product slide effect */
    
	

	
	/* flash slide effect
		$('.slide-1-flash').mouseover(function() {
            $(this).stop().effect("shake", { times:1 }, 300);
});
		 */
		
		
		/* Slide - 2 - flash slide effect 
		
		
		$('.slide-2-icon').mouseover(function() {
           var oldHeight = $(this).height();
            var oldWidth = $(this).width();
            var newHeight = $(this).height() +55;
            var newWidth = $(this).width() + 65;
            var pos = $(this).offset(); 
            moving = true;
                $(this).css({'z-index' : '10'});
				$(this).stop().animate({
                    width: newWidth,
                    height: newHeight
                }, 600,"easeInElastic",function() {
                    moving = false;
					$(this).animate({
                        width: oldWidth,
                        height: oldHeight
                    }, 800, "easeInElastic");
			 }); 
        });
		
				$('.slide-2-statement').mouseover(function() {
           var oldHeight = $(this).height();
            var oldWidth = $(this).width();
            var newHeight = $(this).height() +55;
            var newWidth = $(this).width() + 65;
            var pos = $(this).offset(); 
            moving = true;
                $(this).css({'z-index' : '10'});
				$(this).stop().animate({
                    width: newWidth,
                    height: newHeight
                }, 600,"easeInElastic",function() {
                    moving = false;
					$(this).animate({
                        width: oldWidth,
                        height: oldHeight
                    }, 800, "easeInElastic");
			 }); 
        });

*/

/* Slide - 3 - explode slide effect 
		$('.slide-3-title').mouseover(function()  {
		  var oldHeight = $(this).height();
		  var oldWidth = $(this).width();
		  var newHeight = $(this).height() + 35;
		  var newWidth = $(this).width() + 35;
		  
		  $(this).animate({
			width: newWidth,
			height: newHeight
		 }, 500, "easeInElastic", function() {
			 $(this).animate({
				width: oldWidth,
				height: oldHeight
			 }, 800, "easeOutElastic");
		  });
	});
		*/
	
	

	





});

