$(document).ready(function(){
	$(".topMenu").bind("mouseover", function(){
		$(this).css("border-bottom", "5px solid #1170B0");
	});
	$(".topMenu").bind("mouseout", function(){
		$(this).css("border-bottom", "5px solid #FFFFFF");
	});
	var done = 0;
	$(".buttonLeftBlue").bind("mouseover", function(){
		if(done == 0){
			$(this).css("background-color", "#3aafda");
			var index = $(".buttonLeftBlue").index(this);
			$(".buttonLeftBlue").each(function(i){
				if (i==index){
					$("#buttonLeftBottom"+i).css("background-color", "3aafda");
					$("#buttonLeftTop"+i).css("background-color", "3aafda");
				}
			});
			done = 1;
		}
		
	});
	$(".buttonLeftBlue").bind("mouseout", function(){
		if (done == 1){
			$(this).css("background-color", "transparent");
			done = 0;
			var index = $(".buttonLeftBlue").index(this);
			$(".buttonLeftBlue").each(function(i){
				if (i==index){
					$("#buttonLeftBottom"+i).css("background-color", "transparent");
					$("#buttonLeftTop"+i).css("background-color", "transparent");
				}
			});
		}
	});
	
});

