
$( function () {

			function onAfter() {
				// when this function is called, 'this' will refer to the DOM element of the slide that was just loaded.
				var new_text = $(this).find('h1:first').text();
				
				$('#page_title .sub_page').text( new_text );
			}
			
			
			$('#slideshow').cycle({									// set up the slideshow
				fx: 'scrollHorz',
				timeout: 0,
				next: '.next_slide',
				easing: 'easeInOutQuad',
				after: onAfter // callback function
			});
			
			$('.next_slide').click( function () {
				$(this).blur(); // de-select the button that was just clicked.								  
			});
			
						
			$('#main #content .text a').click( function () {
							
				loadSWF( $(this).attr('href') );
				//click_tab("t_design"); // uncomment to select the appropriate tab
				
				return false; //disable default link behaviour
				
			});	
});