$(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');
	
	$("#quick_links ul li:nth-child(odd)").addClass('odd');
	$("#quick_links ul li:nth-child(even)").addClass('even');
	
	
	/*
	
$('#nav a')
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 -250px)"}, 
			{duration:500})
	})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 0)"}, 
			{duration:500})
	})
	
	
	$('.cycle').cycle({ 
		fx:    'fade', 
		speed:  500, 
		timeout: 5000, 
		pager:  '.slider-nav',
		pagerEvent: 'mouseover',
		pauseOnPagerHover: true
	});
*/
	
});