$(document).ready( function() {


$(".featureImage .thumbs a").click(function() {
var clicked = $(this).attr("class");
    $(".featureImage > img").hide();
 $(".featureImage img#"  + clicked).show();
return false;
});

	$('a.lightbox').lightBox();
if( !$('.tabs').hasClass('withLink')){
$(".tabContent").hide();
$(".tabContent:first").show();
$("ul.tabs li a").click(function(){
var tabSelected = $(this).attr("href");
$("ul.tabs li").removeClass("on");
$(this).parent().addClass("on");
$(".tabContent").hide();
$(tabSelected).show();
return false;
});
}


});
