$(document).ready(function(){
	
	// Open external links in a new window
	//$("a[href^='http']").not("[href*='reelrocktour.com']").attr('target','_blank');
	$("a[href^='http']").attr('target','_blank');
	
	// Open videos with fancybox
	var videos = $('a.watch');
	if (videos.length) {
		videos.fancybox({
			overlayColor : '#141e28',
			overlayOpacity : 0.7,
			width : 640,
			height : 360,
			speedOut : 100,
			titleShow : false
		});
	}
	
});

