// <![CDATA[
		$(function(){
			
			// Initialize Tabs
			$('.tabs').tabs(); /* { fx: { opacity: 'toggle' } } */
			
			// Tab Prev/Next Buttons
			$('.next').click(function(){
				var $tabs = $('.tabs').tabs();
				var selected = $tabs.data('selected.tabs');
				$tabs.tabs('select', selected + 1); return false;
			})
			$('.previous').click(function(){
				var $tabs = $('.tabs').tabs();
				var selected = $tabs.data('selected.tabs');
				$tabs.tabs('select', selected - 1); return false;
			})
			    
	    // Scaleable Background Prefs
			$.fn.supersized.options = {  
				startwidth: 4,  
				startheight: 3,
				vertical_center: 1,
				slideshow: 0,
				navigation: 0,
				transition: 0, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
				pause_hover: 0,
				slide_counter: 0,
				slide_captions: 0,
				slide_interval: 3000
			};
			// Initialize Scaleable Background
	    $('#supersize').supersized();
	    
	    // Make logo clickable, link home
			$("#title").click(function(){
  	  	window.location=$(this).find("a").attr("href");return false;
			});
		});
		
// ]]>

