$(document).ready(function () {
	
	$(".content > .container > .border .box > .header:eq(0)").css("background-image","url('head_bg_1.jpg')");
	$(".content > .container > .border .box > .header:eq(1)").css("background-image","url('head_bg_2.jpg')");
	$(".content > .container > .border .box > .header:eq(2)").css("background-image","url('head_bg_3.jpg')");
	
	$(".link > a").hover(function () {
		$(this).parent().css("background-color","#3E8BFF");
		$(this).css("color","#ffffff");
		$("#"+$(this).attr("class")).fadeIn();
	},function () {
		$(this).parent().css("background-color","");
		$(this).css("color","#9FC5FF");
		$("#"+$(this).attr("class")).hide();
	});
	
	$(".submenu").hide();
	$(".submenu").hover(function () {
		$(this).show();
		$(".link > ."+$(this).attr("id")).parent().css("background-color","#3E8BFF");
	}, function () {
		$(this).hide();
		$(".link > ."+$(this).attr("id")).parent().css("background-color","");
		$(".link > ."+$(this).attr("id")).css("color","#9FC5FF");
	});
});

//#18160E
//#3E8BFF
