//Sscripts.js

$(function () {
    $('.tabs-2').click(function () {
        $('#tabs-1').css('display', 'none');
        $('#tabs-2').css('display', 'block');
        $('#tabs-container').css('background-position', 'top');

        resizeMap();
    });
    $('.tabs-1').click(function () {
        $('#tabs-2').css('display', 'none');
        $('#tabs-1').css('display', 'block');
        $('#tabs-container').css('background-position', 'bottom');
    });
	
	$('#resource-tables h3').toggle(function() {
    
    	$(this).next('table').fadeIn("fast");
		$(this).children('.accordion-bullet').css('display', 'none');
		$(this).children('.active-bullet').css('display', 'inline');
    	$(this).children('sub').css('display', 'inline');
    	
    	}, function() {
    	
    	$(this).next('table').css("display", 'none');
    	$(this).children('sub').css('display', 'none');
		$(this).children('.accordion-bullet').css('display', 'inline');
		$(this).children('.active-bullet').css('display', 'none');

    });
	
	$('.gallery-thumb:nth-child(6n+7)').css('margin-right', '0');
});


