$(document).ready(function() {
 
	$('#nav a').click(function(){
		switch_tabs($(this));
	});
 	
	
	switch_tabs($('.default'));
	
 
});
 
function switch_tabs(obj)
{
	$('.block').hide();
	$('#nav a').removeClass("selected");
	var id = obj.attr("rel");
 
	$('#'+id).show();
	obj.addClass("selected");
}
$(function() {
   $('.imagebox a').lightBox({
	overlayBgColor: false,
	overlayOpacity: 0.6,
	imageLoading: '../engine/style-users/loading.gif',
	imageBtnClose: '../engine/style-users/close.png',
	imageBtnPrev: '../engine/style-users/prev.png',
	imageBtnNext: '../engine/style-users/next.png',
	containerResizeSpeed: 350,
	txtImage: 'Image',
	txtOf: 'of'
   });
});

