var Site = {

	// this vars should be set in <head> server-side
	config: {
		base_url: '',
		site_url: ''
	},
	
	// this method is called on every page
	init: function() {
		
		// On Dom Ready
		jQuery(function($) {
			
			$("#slider").easySlider({
				auto: false, 
				continuous: true,
				numeric: true
			});
			
			DD_belatedPNG.fix('.pngfix');
			
		});
		
		// On Window Load
		jQuery(window).load(function ($) {

		});
		
		// Load Immediately
		(function($) {
		
		})(jQuery);

	}
};

Site.init();
