$(document).ready(function() {
			//#############################################
			//############################################# NAVIGATION BUTTONS 
			//#############################################	
			$('.wp').hover(function() {
					$(this).find('img').attr('src', 'wpo.jpg');
					$(this).animate({
						'marginTop': "30px"
					  }, 200 );
				},function() {
					$(this).find('img').attr('src', 'wp.jpg');
					$(this).animate({
						'marginTop': "40px"
					  }, 200 );
				}
			);
			$('.bp').hover(function() {
					$(this).find('img').attr('src', 'bpo.jpg');
					$(this).animate({
						'marginTop': "30px"
					  }, 200 );
				},function() {
					$(this).find('img').attr('src', 'bp.jpg');
					$(this).animate({
						'marginTop': "40px"
					  }, 200 );
				}
			);
		});
