// JavaScript Document

$(document).ready( function() {
	$('#overview-tabs').tabs();
	$('#top > section, body > section, footer > section').wrapInner('<div class="col3 center" />');
	/*$('nav a[href]').qtip({
      // Simply use an HTML img tag within the HTML string
      content: '<div style="background: url(images/bubble-services.png) #000 no-repeat; width: 65px; height: 65px; margin: 0; padding: 0;"></div>'
	});*/
		
	$('.coming-soon').fancybox();
	$('a.portfolioimage').click( function(e) {
		thepage = $(this).attr('href');
		thepage = thepage.replace('http://rjksn.me/', '/');
		_gaq.push(['_trackPageview', thepage ]);
	});	

	$('a.portfolioimage').fancybox({
		'titlePosition'	:	'over',
		'padding'		: 0,
		'onComplete'	:	function() {
			$("#fancybox-wrap").hover(function() {
				$("#fancybox-title").show();
			}, function() {
				$("#fancybox-title").hide();
			});
		}
			
	});

});
