$(document).ready(function() {
            $('#ex1').hover(function() {
                $('#explore').slideToggle();
	        });
			 $('#ex2').hover(function() {
                $('#expertise').slideToggle();
	        });
			 $('#ex3').hover(function() {
                $('#experience').slideToggle();
	        });
			$('#tabs div').hide();
			$('#tabs div:first').show();
			$('#tabs ul li:first').addClass('active');

			$('#tabs ul li a').click(function(){
			$('#tabs ul li').removeClass('active');
			$(this).parent().addClass('active');
			var currentTab = $(this).attr('href');
			$('#tabs div').hide();
			$(currentTab).show();
			return false;
			});
			
			 $('#why-div').hover(function() {
                $('#why').fadeIn('medium')
			
            },
           function() {
               $('#why').fadeOut('medium');
           });
		  
		
		$(".thumbs a").click(function(){
			var largePath = $(this).attr("href");
			var largeAlt = $(this).attr("title");
			$("#largeImg").attr({ src: largePath, alt: largeAlt });
			$("h2 em").html(" (" + largeAlt + ")"); return false;
		});
		
		
});
		
		



  
