/*
 * Desenvolvido por: Webee E-marketing e Eduardo Bertolucci
 * Copyright (c) 2010 Webee E-marketing (http://www.webee.com.br)
 * Copyright (c) 2011 Rafael Damasio
 */
jQuery(document).ready(function(){
	/*setTimeout(function() {
		jQuery(".contentAnimIndex").fadeIn()
	}, 200);
	
	setTimeout(function() {
		jQuery(".contentAnimIndex").animate({
			marginTop: 0
		}, 800)
	}, 200);*/
	
	jQuery(".animDown").hover(
		function(){
			jQuery(".animDown div img").animate({
				/*opacity: 0.75,*/
				width: 98,
				height: 310,
				marginLeft: 0,
				marginTop: 0
			}, 300, function() {
				// Animation complete.
			});
		},function(){
			jQuery(".animDown div img").animate({
				/*opacity: 1,*/
				width: 92,
				height: 291, //Altura da Imagem
				marginLeft: 3,
				marginTop: 13
			}, 500, function() {
				// Animation complete.
			});
		}
	);
	jQuery(".animDown").hover(
		function(){
			jQuery(".animDown").animate({
				height: 330
			}, 300, function() {
				// Animation complete.
			});
		},function(){
			jQuery(".animDown").animate({
				height: 320 //Altura Padrão - Igual o CSS
			}, 500, function() {
				// Animation complete.
			});
		}
	);
	
	jQuery(".animMidio").hover(
		function(){
			jQuery(".animMidio div img").animate({
				/*opacity: 0.75,*/
				width: 152,
				height: 452,
				marginLeft: 0,
				marginTop: 0
			}, 300, function() {
				// Animation complete.
			});
		},function(){
			jQuery(".animMidio div img").animate({
				/*opacity: 1,*/
				width: 139,
				height: 413,
				marginLeft: 7,
				marginTop: 13
			}, 500, function() {
				// Animation complete.
			});
		}
	);
	jQuery(".animMidio").hover(
		function(){
			jQuery(".animMidio").animate({
				height: 502
			}, 300, function() {
				// Animation complete.
			});
		},function(){
			jQuery(".animMidio").animate({
				height: 482 //Altura Padrão - Igual o CSS
			}, 500, function() {
				// Animation complete.
			});
		}
	);
	
	jQuery(".animPersonale").hover(
		function(){
			jQuery(".animPersonale div img").animate({
				/*opacity: 0.75,*/
				width: 152,
				height: 452,
				marginLeft: 0,
				marginTop: 0
			}, 300, function() {
				// Animation complete.
			});
		},function(){
			jQuery(".animPersonale div img").animate({
				/*opacity: 1,*/
				width: 139,
				height: 413,
				marginLeft: 7,
				marginTop: 13
			}, 500, function() {
				// Animation complete.
			});
		}
	);
	jQuery(".animPersonale").hover(
		function(){
			jQuery(".animPersonale").animate({
				height: 452
			}, 300, function() {
				// Animation complete.
			});
		},function(){
			jQuery(".animPersonale").animate({
				height: 432 //Altura Padrão - Igual o CSS
			}, 500, function() {
				// Animation complete.
			});
		}
	);
	
	jQuery(".animFtp").hover(
		function(){
			jQuery(".animFtp div img").animate({
				/*opacity: 0.75,*/
				width: 98,
				height: 310,
				marginLeft: 0,
				marginTop: 0
			}, 300, function() {
				// Animation complete.
			});
		},function(){
			jQuery(".animFtp div img").animate({
				/*opacity: 1,*/
				width: 92,
				height: 291,
				marginLeft: 3,
				marginTop: 13
			}, 500, function() {
				// Animation complete.
			});
		}
	);
	jQuery(".animFtp").hover(
		function(){
			jQuery(".animFtp").animate({
				height: 310
			}, 300, function() {
				// Animation complete.
			});
		},function(){
			jQuery(".animFtp").animate({
				height: 300 //Altura Padrão - Igual o CSS
			}, 500, function() {
				// Animation complete.
			});
		}
	);
});
