$(document).ready(
	function(){
// Place Functions Below this line

// External Links
		$('a[rel=external]').click(function(){
		this.target = "_blank";
		});




/** // Accordion Control
		$('.accordian ul.accordianContent').hide();
		$('.accordian li a').click(
			function() {
				var checkElement = $(this).next();
				if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
					return false;
				}
				if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
				$('.accordian ul.accordianContent:visible').slideUp('normal');
				checkElement.slideDown('normal');
				return false;
				}
			  }
			);
*/

// Fancybox Image Popup
		$('a.fancyBox').fancybox({
			zoomSpeedIn: 700,
			zoomSpeedOut: 400,
			easingIn: 'easeOutBack',
			zoomOpacity: 0,
			easingOut: 'easeInBack',
			frameWidth: 940,
			frameHeight: 500
		});

		

// Place Functions Above this line
	}
);