
///////////////////////////////////////////////////////////////////////////////

// SECTION DIV CONTROL
$(document).ready(function(){

 	$('div.section:eq(0)').show();
	$('div.section:gt(0)').hide();
	
	$('.subMenu a').click(function (event) {
		$("div.section").fadeOut('slow');
	 	var newDiv = $(this).attr("title");
	 	$("div#" + newDiv).fadeIn('slow'); 
		//event.preventDefault();	
		clearInterval(intval);
    	intval = setInterval( function(){slideSwitch(newDiv)}, 4000 );

	});
	
	$('.openTitle').click(function(event){
		event.preventDefault();
		var div = $(this).attr("title");
		$('#' + div).slideToggle("slow"); 
	});
	
	$('div.newsSection:eq(0)').show();
	$('div.newsSection:gt(0)').hide();
	
	
});






