$(function() {		
			
		// Scripts
		
		$('#social-media img').hover(
			function(){
			$(this).attr('revert', $(this).attr('src'));
			$(this).attr('src', $(this).attr('hover'));
			
		},
			function(){
			
			$(this).attr('src', $(this).attr('revert'));
			
			
		});
		
		$('#projects-slide img').hover(
			function(){
			$(this).attr('revert', $(this).attr('src'));
			$(this).attr('src', $(this).attr('hover'));
			
		},
			function(){
			
			$(this).attr('src', $(this).attr('revert'));
		});
		
		nav();
		bg();
		
		$(window).resize(function(){
			
			nav();
			bg();
		})
		
		function nav()
		{
			var width = $(this).width();
			
			
			if(width < 904)
			{
				$('nav').removeClass('right').addClass('left');
				$('#nav-container').height(210);
			}
			else
			{
				$('nav').removeClass('left').addClass('right');
				$('#nav-container').height(175);
			}
		}
		
		
		function bg()
		{
			var width = $(this).width();
			
			$('#contact-slide').css('background-position', width-477);
			$('#services-slide').css('background-position', width-454);
			
		}
		
		
		
		
		/* MHEA */
		
		
		
		
		
		
		
		
		
		
		
		
		
		
				
});
