$(document).ready(function(){
	var windowHeight = $(window).height();
	windowHeight = windowHeight + 1;
	$("#outerwrapper").css({'height':windowHeight+'px'})
});

$(document).ready(function(){
	$("#masthead ul li:last").css({'border-right':'none'})
});


$(document).ready(function(){
	$("input.btn").hover(function(){
		$(this).addClass("hover");
	},function(){
		$(this).removeClass("hover")
	})
});

$(document).ready(function() {
	$('#comments').cycle({ 
    fx:    'scrollUp', 
    speed: 1500,
    timeout:  3500,
    pause:1  
	});
});