// JavaScript Document
$(document).ready(function(){
						   
	$('#tabs').tabs();	
	
	$('a[rel="external"]').click(function(){
	
		$(this).attr('target','_blank');
	
	});
						   
    $('#slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 4000
	});
	
	$('a[rel="fancybox"]').fancybox({
		'overlayShow' : true,
		'hideOnOverlayClick': true,
		'zoomSpeedIn' : 600,
		'zoomSpeedOut' : 500,
		'easingIn' : 'easeOutBack',
		'easingOut' : 'easeInBack' ,
		'easingChange': 'easeInOutBack'
	}); 
});
