//Pickup
$(function(){
$(".pickup,.pickup_txt").scrollable({ vertical: true, circular: true }).navigator().autoscroll({ autopause: false, interval: 9000 });
});


//Pagetop
$(function(){
$('#pagetop').click(function () {
$('html,body').animate({ scrollTop: 0 }, 'normal');
return false;
});
});


//Order
$(function(){
$(".posttgl:checked").each(function(){
$("#post").show();
});

$(".posttgl").click(function(){
if($(this).attr('checked') == true){
$("#post").show();
} else {
$("#post").hide();
}
});
});

//input focus
$(function(){
$('#subscribe-box input[title]').each(function(){
if($(this).val() === '') {
$(this).val($(this).attr('title'));
}
$(this).focus(function() {
if($(this).val() == $(this).attr('title')) {
$(this).val('').addClass('focused');
}
});
$(this).blur(function() {
if($(this).val() === '') {
$(this).val($(this).attr('title')).removeClass('focused');
}
});
});
});
