	var Site = {
		
		init : function() {
	
			//jQuery
			jQuery.noConflict();
			
			(function($) {
				$(document).ready(function(){
					//SLIDER	
					$("#slider").easySlider({
						numeric: true,
						auto: true,
						pause: 5000,
						continuous: true
					});
					//END SLIDER
					

				}); //END JQUERY
			})(jQuery);
		}	
	}
		
	Site.init();	

