			$(window).load(function() {  
				$('#loader').fadeOut("slow");
			}); 

			
			$(document).ready(function() {
			
				$('a').focus(function() {
				$(this).blur();
				});
				

					
				$('marquee').marquee().mouseover(function () {
					  $(this).trigger('stop');
					  $(this).css('cursor','pointer');
					}).mouseout(function () {
					  $(this).trigger('start');
					}).mousemove(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);
					});
				
				$('.box').colorbox();
				$('.boxx').colorbox({width:"450px", height:"350px", iframe:true});
			});
