jQuery(document).ready(function(){if($('.galBtn').length>0){$('.galBtn:first').addClass("current");var albumID=$('.galBtn:first').attr('id');$.post("/manage",{getAlbum:"yep",albumID:albumID},function(data){$('.gallery .img').html(data);});$.post("/manage",{getAlbumMain:"yep",albumID:albumID},function(data){$('.mainThumbs').html(data);});} $('.galBtn').click(function(){var albumID=$(this).attr('id');$('.galBtn').each(function(){$(this).attr('class','galBtn');});$('.vidBtn').attr('class','vidBtn');$(this).attr('class','galBtn current');$.post("/manage",{getAlbum:"yep",albumID:albumID},function(data){$('.gallery .img').html(data);});});$('.vidBtn').click(function(){var albumID=$(this).attr('id');$('.galBtn').each(function(){$(this).attr('class','galBtn');});$(this).attr('class','vidBtn current');$.post("/manage",{getVideoAlbum:"yep",id_development:albumID},function(data){$('.gallery .img').html(data);});});});