jQuery(document).ready(function(){
	
	jQuery(".tabbed-button").hover(function(){
		jQuery(".tabbed-courses").hide(); //hide div with .tabbed-course class
		var current_tab = jQuery(this);
		var current_tab_id = jQuery(current_tab).attr("id"); //create var for the select tab
		jQuery("#"+current_tab_id+"-content").show();//Show the current tab div with + "-content" id
		jQuery("#"+current_tab_id+"2-content").show();//Show the current tab div with + "-content" id
		jQuery(".active_tab_image").removeClass("active_tab_image"); //when a tab is clicked remove the active button
		jQuery(current_tab).addClass("active_tab_image"); //add active button to clicked button
	});
	var cycleInterval = setInterval ("nextCycle()", 10000 );
});
	function nextCycle(){
		var bttn = jQuery(".active_tab_image");
		var next_button = jQuery(bttn).next();
		if (jQuery(next_button).length > 0){
			jQuery(next_button).hover();
		}
		else{
			jQuery(".tabbed-button").first().hover();
			
		}
	}
