$(document).ready(function() {
//Funcion que ejecuta el jquery timer
	$.timer(4000, function (timer) {
	  wallpaper_refresh();
	});
	
	SexyLightbox.initialize({color:'black', dir: 'images/lightbox'});
});


//Funcion que actualiza el banner, si se desea con efectos descomentariar  //with effects y comentariar //without effects
function wallpaper_refresh()
{  
   $.ajax({
        url: 'component/component_random_wallpaper.php',
        dataType : "html",
        cache:false,
        type: "GET",
        success: function(data) {                
        //with effects
        $('#right_content').fadeOut(1000, function(){ $('#right_content').html(data);}).fadeIn();
        
        }
        });
}

function wallpaper()
{  
   $.ajax({
        url: 'component/component_random_wallpaper.php',
        dataType : "html",
        cache:false,
        type: "GET",
        success: function(data) {                
        //with effects
        $('#right_content').html(data);        
        }
        });
}

function clear_form()
{
    document.getElementById("username").value = "";
    document.getElementById("password").value = "";
}
