/* Javascript
----------------------------------------------------------------------------- */


/* Ready Function
----------------------------------------------------------------------------- */


	$(document).ready(function() {
	
	
/* TABS
----------------------------------------------------------------------------- */


		$('#content > ul').tabs({ fxSlide: true });
	

/* End Ready Function
----------------------------------------------------------------------------- */


	});


/* Load Function
----------------------------------------------------------------------------- */


	$(window).load(function() {
	

/* External Links
----------------------------------------------------------------------------- */


		$('a[rel=external]').click(function(){
		
			link = $(this).attr('href');
			window.open(link);
			return false;
	
		});


/* End Load Function
----------------------------------------------------------------------------- */


	});
