$(document).ready(function(){					   
	/* Scrobar */						   
	$('.horizontal_scroller').SetScroller({	velocity: 	 60,
										direction: 	 'horizontal',
										startfrom: 	 'right',
										loop:		 'infinite',
										movetype: 	 'linear',
										onmouseover: 'pause',
										onmouseout:  'play',
										onstartup: 	 'play',
										cursor: 	 'pointer'
									});

	/* Scrollbar End */
	
	
	/* Welcome Box */
	$("#links img.link")       
		 .mouseover(function() { 
			var src = $(this).attr("src").match(/[^\.]+/) + "_over.jpg";
			$(this).attr("src", src);
			var id = $(this).attr("id");
			$('#welcomeBox div.welcome').hide();
			$('#welcomeBox div.'+id).show();
		})
		.mouseout(function() {
			var src = $(this).attr("src").replace("_over", "");
			$(this).attr("src", src);
			var id = $(this).attr("id");
			$('#welcomeBox div.'+id).hide();
			$('#welcomeBox div.welcome').show();			
		});
	/* Welcome Box End */
	
	
	/* Sponsor */
	$("#sponsor .flip").click(function(){
   		$("#sponsor .panel").slideToggle(1000);
	});
	/* Sponsor End */
});
