$(document).ready(function (){
	initCommentform();
	initScrollable();
	initWorks();
});

function initCommentform(){
	$("#commentform").hide();
	
	$("#leaveReply").click(function(event){
		event.preventDefault();
		$("#commentform").slideToggle();
	});
}

function initScrollable(){
	if($(".scrollable").length != 0){
		$(".scrollable").scrollable({size: 1, loop: true}).navigator(".navi"); 	
	}
}

function initWorks(){
	if($("#work-intro").length != 0){
		$(".workitem h2").click(function(){
			$(this).find(".workitem-content .hidden").show();	
		});
	}
}