// JavaScript Document

/*function bg_loader(img,action){
	$('#img-bg-container').ready(function(){
																				
	if(action == 'change'){
		$('#img-bg-container').fadeOut('slow',function(){
			$div_bg = document.getElementById('img-bg-container');
			$('#img-bg-container').hide();
			$div_bg.style.background = 'url('+img+')';
			$('#img-bg-container').fadeIn(1000);
		});
	}else{
		$div_bg = document.getElementById('img-bg-container');
		$('#img-bg-container').hide();
		$div_bg.style.background = 'url('+img+')';
		$('#img-bg-container').fadeIn(500);
	}
	
	})
}

function change_page(loc){
	dom = 'http://localhost/site/tempo_html/mama.php'
	$.get(dom,loc,function(con){
		$('#content-container').html(con);
	});
}

*/


/*alert(window.screen.availWidth+' to '+window.screen.availHeight);
	$(window).resize(function(){
														
})
*/


