$(function() {

	$('div.feature-btn').click(function(){
		
		var target = $(this).data('target');
		trackBtn(this);
		$(this).parents('div.feature-bg,div.feature-container').fadeOut(200,function(){
			$('div.feature-bg[data-project="'+target+'"]').children('div.feature-container').andSelf().fadeIn(700);
		});
	});

	function trackBtn(self) {
		var label = 'unknown';
		if ($(self).hasClass('left')) {
			label = 'left'	
		}
		if ($(self).hasClass('right')) {
			label = 'right'	
		}
		_gaq.push(['_trackEvent', 'Home Slideshow', 'Rotate Home', label]);
	}
	
	$('div.title a').click(function(){
		var title = $(this).attr('title');
		_gaq.push(['_trackEvent', 'Home Slideshow', 'Project Click', title]); 
	});

});
