$(document).ready(function(){
	$('#slidebottom button').click(function() {
	  if ($('button').hasClass('up')) {
	    $('#slidebottom').animate({
		    bottom: '320'
		  }, 360, function() {
		  	$('#slidebottom button.up').removeClass('up').addClass('down').addStyle;
		 });
	  } else {
		$('#slidebottom').animate({
		    bottom: '0'
		  }, 360, function() {
		  	$('#slidebottom button.down').removeClass('down').addClass('up');
		});
	  }
	});
				
  	$(".projects ul li:odd").addClass("last");
  	
  	$('#slideshow').slideshow({
		timeout: 5000,
		fadetime: 2000,
		type: 'sequence',
		pauselink: 'pause1',
		pausecallback: function(self){
			self.html('Play')
		},
		playcallback: function(self){
			self.html('Pause');
		}
	});
});


$(function(){
	$('a.new-window').click(function(){
	window.open(this.href);
	return false;
	});
});
