

$theborder=0; //border around image (change top and left values of #bg accordingly)
$bg=$("#bg");
$bgimg=$("#bg #bgimg");
$bgf=$("#fondo");
$bgimgf=$("#fondo #bgimg");
$preloader=$("#preloader");
$(window).load(function() {

	//mainmenu();
				

	FullScreenBackground($bgimg,$bg);
	FullScreenBackground($bgimgf,$bgf);
	$preloader.fadeOut("fast");
	
	$bgimg.delay(100).fadeIn("slow");
	
 
	$(window).resize(function() {
		FullScreenBackground($bgimg,$bg);
	FullScreenBackground($bgimgf,$bgf);
	});
});
 
$bgimg.load(function() {
	var $this=$(this);
	FullScreenBackground($this,$bg);
	$preloader.fadeOut("fast");
	$this.delay(200).fadeIn("slow");
});
 

