// BLP Main Menu

 $(document).ready(function() {
		
	   //Tells the buttons to display the green border image and animates it on by increasing the opacity
	   $('.mainMenuWrap a').hover(function() {
            $(this).children('.front').stop().animate({ "top" : '50px', "opacity" : 0}, 700);
			$(this).children('.back').stop().animate({ "top" : '0px', "opacity" : 1}, 800);
        }, function() {
            $(this).children('.front').stop().animate({ "top" : '0', "opacity" : 1}, 400);  
			$(this).children('.back').stop().animate({ "top" : '0px', "opacity" : 0}, 200); 
        });
		
		//Tells the buttons to reset when clicked
		$('.mainMenuWrap a').click(function() {
            $(this).children('.front').stop().animate({ "top" : '0px', "opacity" : 1}, 700);
			$(this).children('.back').stop().animate({ "top" : '0px', "opacity" : 0}, 800);
       
        });
		
  });
