
/* --------------- GALLERY SLIDESHOW ------------------------ */

$(function(){
  var nextButton = $('.nextbutton'), prevButton = $('.prevbutton');

  //Remove scrollbars
  $('.sc_menu').css({overflow: 'hidden'});

	var galleryNum = $('#gallery li').size();
	var currentItem = 1;
	var temporaryLoc;
	var newLoc;
	
	nextButton.click(function() {
		if(currentItem == galleryNum - 4) {
			currentItem = 1;
			$('#gallery').animate({"left":"0px"});
		} else {
			temporaryLoc = currentItem * 95;
			newLoc = temporaryLoc - temporaryLoc - temporaryLoc;
			$('#gallery').animate({"left":newLoc});
			currentItem++;
		}
			return false;
	});
	
	prevButton.click(function() {
		if(currentItem == 1) {
			currentItem = 1;
			$('#gallery').animate({"left":"0px"});
		} else {
			temporaryLoc = currentItem * 95 - 190;
			newLoc = temporaryLoc - temporaryLoc - temporaryLoc;
			$('#gallery').animate({"left":newLoc});
			currentItem--;
		}
			return false;
	});

/* --------------- AJAXFORM ------------------------ */

$('#ajaxform').ajaxForm({
target: '#log',
success: function(responseText) 
{
	var x = $('div.success').text().length;
	if(x>0) $('#ajaxform').slideUp('slow');	
}
});


//
$('div#blog .post:last-child').addClass('last-single-post');

});

