$(document).ready(function(){		
		//$("#featured > ul").tabs({fx:{opacity: "show"}}).tabs("rotate", 5000, true);	Enable this line so to enable the slideshow of the second gallery
		//The code below makes the second big image to be set by hovering on the images on right
		//Starts
			$('.ui-tabs-nav-item').hover(function() {			
			var parent_li = $(this);
			var index = $('.ui-tabs-nav-item').index(parent_li);
				$('#featured .ui-tabs-panel').addClass('ui-tabs-hide');
				$('#featured .ui-tabs-panel:eq('+index+')').removeClass('ui-tabs-hide');
			});
		//Ends
	});
