$(document).ready(function(){
$('#gallerycontent div').hide(); // Hide all divs
$('#gallerycontent div:first').show(); // Show the first div
$('#gallerywrapper div ul div li:first').addClass('active'); // Set the class for active state
$('#gallerywrapper div ul div li a').click(function(){ // When link is clicked
$('#gallerywrapper div ul div li').removeClass('active'); // Remove active class from links
$(this).parent().addClass('active'); //Set parent of clicked link class to active
var currentTab = $(this).attr('href'); // Set currentTab to value of href attribute
$("#gallerycontent div:visible").fadeOut(300,function(){ //fade out visible div
$(currentTab).fadeIn(600); //fade in target div


});
return false;

});

});