// JavaScript Document

$(document).ready(function (){
	
	$("#logo1").mouseover(function (){
		$(this).css({backgroundImage:"url(lateral/logo1_cor.png)"});
	});
	$("#logo1").mouseout(function (){
		$(this).css({backgroundImage:"url(lateral/logo1.png)"});
	});
	$("#logo2").mouseover(function (){
		$(this).css({backgroundImage:"url(lateral/logo2_cor.png)"});
	});
	$("#logo2").mouseout(function (){
		$(this).css({backgroundImage:"url(lateral/logo2.png)"});
	});
	$("#logo3").mouseover(function (){
		$(this).css({backgroundImage:"url(lateral/logo3_cor.png)"});
	});
	$("#logo3").mouseout(function (){
		$(this).css({backgroundImage:"url(lateral/logo3.png)"});
	});
	
	/*
	$("#logo1").mouseover(function (){
		$(this).css({backgroundImage:"url(lateral/logo1_cor.png)"});
	}, function (){
		$("#logo1").mouseout(function (){
			$(this).css({backgroundImage:"url(lateral/logo1.png)"});
		});
	});
	$("#logo2").hover(function (){
		$(this).css({backgroundImage:"url(lateral/logo2_cor.png)"});
	}, function (){
		$("#logo2").mouseleave(function (){
			$(this).css({backgroundImage:"url(lateral/logo2.png)"});
		});
	});
	$("#logo3").hover(function (){
		$(this).css({backgroundImage:"url(lateral/logo3_cor.png)"});
	}, function (){
		$("#logo3").mouseleave(function (){
			$(this).css({backgroundImage:"url(lateral/logo3.png)"});
		});
	});
	*/
});
