	var Site = {
		
		init : function() {
	
		//CUFON
		
		Cufon.replace('h1'); 
		Cufon.replace('#sub1');
		
		//SHADOWBOX
		
		Shadowbox.init({
			players: ['iframe', 'img', 'flv', 'swf'],
		    handleOversize:     "drag",
		    handleUnsupported:  "remove",
		    autoplayMovies:     false
		});
		
			//jQuery
			jQuery.noConflict();
			
			(function($) {
				$(document).ready(function(){
				
				//JQUERY CALLS HERE
				
				
					//SLIDER	
					$("#slider").easySlider({
						numeric: true,
						auto: true,
						pause: 5000,
						continuous: true
					});
					//END SLIDER
					
					//INNERFADE
					$('ul#fader').innerfade({
						speed: 2000,
						timeout: 4000,
						type: 'sequence',
						containerheight: '309px',
						containerwidth: '96em'
					});
					//END INNERFADE
					
				
				}); //END JQUERY
			})(jQuery);
		}	
	}
		
	Site.init();
