$(function () {
	//DropDown Menu
	$('#globalNavi li').hover(
	function () {
		$('ul.drop', this).stop(true, true).slideDown('fast');
		$('img', this ).eq(0).attr('src', $('img', this ).eq(0).attr('src').replace('_of.', '_on.'));
	}, function () {
		$('ul.drop', this).slideUp('fast');
		$('img', this ).eq(0).attr('src', $('img', this ).eq(0).attr('src').replace('_on.', '_of.'));
	});

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

	// Rollover
        $('img,input[type=image]').each(function () {
                var ofSrc = $(this).attr('src');
                var ovSrc = ofSrc.replace('_of.', '_on.');
                $(this).hover(function () {
                        $(this).attr('src', ovSrc);
                }, function () {
                        $(this).attr('src', ofSrc);
                });
                $(window).unload(function () {
                        $(this).attr('src', ofSrc);
                });
        });
});
