/**
 * Hides and displays relevant tabs on the homepage.
 * 
 * @author Michelle Steel <msteel@thurrock.gov.uk>
 * @version  1.0 <14/07/2011>
 */

$(document).ready(function(){
	$("#tgov-transactions DIV.tab_contents").each(function() {
		$(this).addClass('tgov-transactions-content-hide');
	});

	$("#tgov-transactions DIV.type_0").removeClass('tgov-transactions-content-hide');

	$("#tgov-transactions-tabs A").click(function(event){
		var hrefval = $(this).attr('href');
		var tab_id = hrefval.substring(9,13);

		if (tab_id == 998) {
			tab_id = 5;
		} else if (tab_id == 999) {
			tab_id = 6;
		}

		$("#tgov-transactions DIV.tab_contents").each(function() {
			$(this).addClass('tgov-transactions-content-hide');
		});

		$(".type_" + tab_id).removeClass('tgov-transactions-content-hide');
		event.preventDefault();
	});
});
