// Initialize tabs.
function init_tabs() {
    // If element does not exist then exit.
	if (!$('ul.tabs, ul.subtabs').length) {return;}

    // Reveal initial content area.
    $('div.tab_content_wrap').each(function() {$(this).find('div.tab_content:first').show();});
    // Reveal initial subcontent area.
    $('div.subtab_content_wrap').each(function() {$(this).find('div.subtab_content:first').show();});

    // If tab is clicked and is not the current tab then change current indicator.
    $('ul.tabs a, ul.subtabs a').click(function() {
		if (!$(this).hasClass('current')) {
			$(this).toggleClass('current').parent('li').siblings('li').find('a.current').toggleClass('current');
			$($(this).attr('href')).show().siblings('div.tab_content, div.subtab_content').hide();   // Show target, hide others.
		}
		this.blur();      // Nofollow.
		return false;
	});
}

// Kick things off.
//$(document).ready(function() {
//    init_tabs();
//    screenshotPreview();
//});
