// Drop-down Menus

$(function(){

	//Hide SubLevel Menus
	$('#menu ul li ul').hide();

	//OnHover Show SubLevel Menus
	$('#menu ul li').hover(
		//OnHover
		function(){
			//Hide Other Menus
			$('#menu ul li').not($('ul', this)).stop();

			//Remove the Arrow
			$('ul li.arrow', this).remove();

			//Add the Arrow
			$('ul li:first-child', this).before(
				'<li class="arrow">arrow</li>'
			);

			//Remove the Border
			$('ul li.arrow', this).css('border-bottom', '0');

			// Show Hoved Menu
			$('ul', this).stop(true, true).slideDown();
			},
		
			//OnOut
			function(){
			// Hide Other Menus
			$('ul', this).stop(true, true).slideUp();			
		}
		
	);

});

// Grid Fades 
	
$(document).ready(function(){
$(".frontimage").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
 
});

