$(document).ready(function(){
			
			$('html.opera div#marquee, html.msie div#marquee, html.webkit div#marquee, html.mozilla div#marquee, div#marquee').marquee('marquee')
				
			.stop(true).hover(function () {
            	
           		$(this).trigger('stop');
            	
           		$('p#hvr-lft').replaceWith('<p id="hvr-lft"><< Click and Hold to Drag</p>');
				
				$('p#hvr-rght').replaceWith('<p id="hvr-rght">Click and Hold to Drag >></p>');
      			
      		},
      			
      		function () {
            	
           		$(this).trigger('start');
            	
           		$('p#hvr-lft').replaceWith('<p id="hvr-lft">Hover to Pause</p>');
     			
     			$('p#hvr-rght').replaceWith('<p id="hvr-rght">Hover to Pause</p>');
     					
     			if($(this).data('drag') == true){
     						
     				$(this).data('drag', false);
     						
     			}
     									
			}).mouseover(function (event) {
  				
  				if ($(this).data('drag') == true) {
  				
  					this.scrollLeft = $(this).data('scrollX') + ($(this).data('x') - event.clientX);
  					
  				}
					
			}).mousedown(function (event) {
  						
  				$(this).data('drag', true).data('x', event.clientX).data('scrollX', this.scrollLeft);
					
			}).mouseup(function (event) {
  						
  				$(this).data('drag', false);
  				
  			});
			      			
      		if($('html').hasClass('msie')){
				
				$('html.msie div.marquee, div.marquee')
				
				.stop(true).hover(function () {
            		
            		$('p#hvr-lft').replaceWith('<p id="hvr-lft"><< Click and Hold to Drag</p>');
				
					$('p#hvr-rght').replaceWith('<p id="hvr-rght">Click and Hold to Drag >></p>');
      			
      			},
      			
      			function () {
            	
            		$('p#hvr-lft').replaceWith('<p id="hvr-lft">Hover to Pause</p>');
     			
     				$('p#hvr-rght').replaceWith('<p id="hvr-rght">Hover to Pause</p>');
     									
				});      			
      		
      		}
   
			
			Cufon.replace('ul li a');
				
			Cufon.replace('h2');
						
			$('ul#Main_Nav li a').css({opacity: 1});
				
			});
