$(document).ready(function(){
	// hide all except first tab content
	$('#tabs div:not(:first)').hide();
	
	// show current tab content, hide others
    $('#tabs ul a').click(function(){
		$('.current').removeClass('current');
		$(this).parent().addClass('current');
		
		showtab = $(this).attr('href');
		// alert( showtab );
		$( showtab ).show();
		$('#tabs div:not( '+showtab+' )').hide();
		
		return false;
    });
	
    $('#galimg').cycle({
		fx: 'fade', 
		timeout: 5000, 
		pause: 1
 	});

    $('#bbb_test').cycle({
		fx: 'fade', 
		timeout: 8000, 
		pause: 1, 
		cleartype: 1
 	});

});
