﻿/* Create a namespace */
var Prego = {};

//try to eliminate IE 6 flicker
try {
    document.execCommand("BackgroundImageCache", false, true);
} catch (err) { }

/* Initialize when page is ready */
$(document).ready(function() {
});

// Initialize when whole page is loaded
$(window).load(function() {

});
