jQuery(function($){
	$(document).ready(function(){
		var links = $('#jq-gallery-tabs a').each(function(){
			var href = $(this).attr("href");
			$(this).attr("href", $(this).attr("alt"));
			$(this).attr("alt", href);
		});
		$('#jqgt-container').tabs({ fx: { opacity: 'toggle' },event: 'mouseover'}).tabs('rotate', 4000, false);
		$(links).each(function(){
			$(this).click(function(){
				window.location = $(this).attr('alt');
			});	
		});
	});
});
