$(document).ready(function(){
	$(".title_img_back").fadeTo("slow", 0.6);
	$(".title_img_back").hover(function(){
		$(this).fadeTo("slow", 1.0);
	},function(){
		$(this).fadeTo("slow", 0.6);
	});

	$(".title_img_main").fadeTo("slow", 0.6);
	$(".title_img_main").hover(function(){
		$(this).fadeTo("slow", 1.0);
	},function(){
		$(this).fadeTo("slow", 0.6);
	});
	
	$(".title_img_company").fadeTo("slow", 0.6);
	$(".title_img_company").hover(function(){
		$(this).fadeTo("slow", 1.0);
	},function(){
		$(this).fadeTo("slow", 0.6);
	});
	
	$(".title_img_services").fadeTo("slow", 0.6);
	$(".title_img_services").hover(function(){
		$(this).fadeTo("slow", 1.0);
	},function(){
		$(this).fadeTo("slow", 0.6);
	});
	
	$(".title_img_solutions").fadeTo("slow", 0.6);
	$(".title_img_solutions").hover(function(){
		$(this).fadeTo("slow", 1.0);
	},function(){
		$(this).fadeTo("slow", 0.6);
	});
	
	$(".title_img_contacts").fadeTo("slow", 0.6);
	$(".title_img_contacts").hover(function(){
		$(this).fadeTo("slow", 1.0);
	},function(){
		$(this).fadeTo("slow", 0.6);
	});			
});
