$(document).ready(function(){
		
	$(".hentry:last").addClass("last");
	
	// initialize scrollable
	$(".scrollable").scrollable();
	
	// initialize slideshow
	$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	/*show hide newsletter value*/
	$('#newsletterEmail').focus(function() {
	  $(this).attr('value', '');
	});
	$('#newsletterEmail').blur(function() {
		if($(this).val() == ""){ 
	      $(this).attr('value', 'enter your email');
		}
	});

});
