$(document).ready(function(){
						   
	$('.fancybox').fancybox({ 'titlePosition': 'inside' }); 
	
	$('a[href^="http://"]').attr("target", "_blank");
	$('.blank').attr('target','_blank');
	
	$("ul li:first-child").addClass('first');
	$("ul li:last-child").addClass('last');

	$('#header ul').cycle({
		fx: 'fade',
		speed: 500,
		timeout: 5000,
		pager: '#headernav'
	}); 
	
	tooltip();
});