/* -----------------------------------------------------------------------------------------------
		mouseover effect with jquery
 ----------------------------------------------------------------------------------------------- */

$(document).ready(function(){
	$(".fadehover .front").hover(
		function() {
			$(this).stop().animate({"opacity": "0"}, "slow");
		},
		function() {
			$(this).stop().animate({"opacity": "1"}, "slow");
		});
});

/* -----------------------------------------------------------------------------------------------
		page clients - highlight industries 
 ----------------------------------------------------------------------------------------------- */

$(document).ready(function() {
	$(".left_clients a").click(function() {
		$(".left_clients a").css("color", "#000000");								
		$(this).css("color", "#eb6100");								
		$(".main_clients span").css("color", "#c4c4c4");
		$(".main_clients ." + $(this).attr("name")).css("color", "#eb6100");
		$(".main_clients ." + $(this).attr("name")).css("font-weight", "bold");
	});
});
