// JavaScript Document
$(document).ready(function(){
	
	/* IMAGE RESIZE */
	
	//The next chunk of code resizes the homepage image if the window size is wider than 1600px.
	img_resize();
	//If the user drags the window size the function will be run.
	$(window).resize(function(){
		img_resize();
	});
	//Run the image resize function.
	function img_resize(){
		var window_width = $(window).width();
		if(window_width > 1600){
			$('#home-image img').addClass('resize');
		} else {
			$('#home-image img').removeClass('resize');
		}
	}
	
});
