// JavaScript Document
jQuery().ready(function(){
		
	
	jQuery('#navigation').accordion({
	active: false,
	header: '.head',
	navigation: true,
	event: 'mouseover',
	fillSpace: true,
	animated: 'easeslide'
});

	$(".dHover").hover(function(){
		var divShow= this.id;
		var tmp="#"+divShow+"T";
		var pos = $(tmp).offset();
		//$(".hLine").css("margin-top",pos.top);
		//$(".hLine").show();
		$(tmp).fadeIn('slow');	
		
	}, function(){
		var divShow= this.id;
		var tmp="#"+divShow+"T";
		$(tmp).hide('fadeOut');
	});

});