// JavaScript Document


$(document).ready(function()
{
		
	$('li.der_link a').hover(function() {
		$(this).parent().parent('ul').stop(true, false).animate({
			top: '-306'
		}, 200);
	}, function() {
		$(this).parent().parent('ul').stop(true, false).animate({
			top: '-222'
		},400);
	});
	
	$('.navi_element')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 -140px)"}, {duration:10})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:1500})
		})
		
	$('.headcontent a.jd_logo')
		.mouseover(function() {
			$('a.jd_logo img').animate({
			top: '0'
			}, 150);
			$('h1').animate({opacity: 1}, 150);
		})
		.mouseout(function() {
			$('a.jd_logo img').animate({
			top: '4'
			}, 200);
			$('h1').animate({opacity: 0}, 150);
		})
});
