$(document).ready(function(){

	/* init galleries */
	$('#drama-thumbs').hide();
	$('#promos-thumbs').hide();

	$('#nav > li > a').click(function (e) {		
	if ((this.id != 'nofollow') && (this.id != 'lukeblog')) {
			e.preventDefault();			
      var toshow = this.className;			
			$('#thumbs > div').hide();
			$('#' + toshow + '-thumbs').fadeIn('fast');		
			$('#youarehere').text(toshow);
		}		
  });		
	
	jQuery.fn.extend({
  	scrollTo : function(speed, easing) {
    	return this.each(function() {
      	var targetOffset = $(this).offset().top;
      	$('html,body').animate({scrollTop: targetOffset}, speed, easing);
    	});
  	}
	});
	
	$('#nofollow').click(function (e) {	
		e.preventDefault();
		$('#contact').scrollTo(1000);
	});
	
	$('#back-to').click(function (e) {	
		e.preventDefault();
		$('#top').scrollTo(1000);
	});
	
});
