$(document).ready(function(){

	// Background
	(function bg() {
		var baseURL = "http://marioluevanos.com/assets/";
		// Add a patterns on top of the background image
		$("body").prepend("<div id='pattern'></div>");
		var imgCount = 1;
		var dir = baseURL + 'img/';
		var randomCount = Math.round(Math.random() * (imgCount - 1)) + 1;
		var images = new Array
		// Beautiful backgrounds :)
			images[1] = "bg.jpg"
		var image = images[randomCount];
		//combine the random background image with $backsteatch plugin
		$.backstretch(dir + image);
	})();

	$('li:last-child').each(function(){
		$(this).css('border','none');
	});

	//Copyright at the footer
	var now   = new Date();
	var yyyy  = now.getFullYear();
	$('#footer span').html(yyyy);

});//jQuery

