$(document).ready(function() {
	var tabsGallery = $('#gallery-scroll .tab a');
	tabsGallery.mouseover(function() {
		tabsGallery.removeClass('hovered');
		$(this).addClass('hovered');
		$(this).tabs();
	});
});