$(function () {

	//DropDown Menu
	$('#globalnavi li').hover(
	function () {
		$('ul.drop', this).stop(true, true).slideDown('fast');
	}, function () {
		$('ul.drop', this).slideUp('fast');
	});

	//DropDown Menu On
	$('ul.drop').each(function () {
		var parentImg = $(this).parent().find('img');
		var parentOf = parentImg.attr('src');
		var parentOn = parentOf.replace('_of.', '_ov.');
		$(this).hover(
		function () {
			parentImg.attr('src', parentOn);
		}, function () {
			parentImg.attr('src', parentOf);
		});
	});

	// Rollover
	$('img,:image').each(function () {
		var ofSrc = $(this).attr('src');
		var ovSrc = ofSrc.replace('_of.', '_ov.');
		$(this).hover(function () {
			$(this).attr('src', ovSrc);
		}, function () {
			$(this).attr('src', ofSrc);
		});
	});

});
