$.noConflict();

jQuery(document).ready(
	function ()
	{
		jQuery("#gallery-slider .thumbnail").each(
			function ()
			{
				jQuery(this).bind(
					"mouseover",
					function ()
					{
						var showContent = "#news-content-" + this.id.substring(15);
						jQuery(".news-content").hide();
						jQuery(showContent).show();
						jQuery("#gallery-slider .thumbnail").removeClass("active");
						jQuery(this).addClass("active");
					}
				);
			}
		);
	}
);
