/* Declare a namespace for the site */
var Site = window.Site || {};

/* Create a closure to maintain scope of the '$'
   and remain compatible with other frameworks.  */
(function($) {
	
	//same as $(document).ready();
	$(function() {
		
$('.bg1').live('click', function()
{
	$('body').css("background-image", "url(_/img/bg_italianbike.jpg)");
	$('.bg1').replaceWith('<p class="switch bg2">Morning in Pisa, Italy</p>');
});
$('.bg2').live('click', function()
{
	$('body').css("background-image", "url(_/img/bg_louvreescalator.jpg)");
	$('.bg2').replaceWith('<p class="switch bg3">Closing at the Louvre, Paris</p>');
});
$('.bg3').live('click', function()
{
	$('body').css("background-image", "url(_/img/bg_frenchgirls.jpg)");
	$('.bg3').replaceWith('<p class="switch bg1">Walking through Marais, Paris</p>');
});

	});


	$(window).bind("load", function() {
		
		
	
	});
	
})(jQuery);
