// JavaScript Document


// pagetop

jQuery.easing.quart = function (x, t, b, c, d) {
    return -c * ((t=t/d-1)*t*t*t - 1) + b;
};  

/*
$(function () {
    if (! $.browser.safari) {
        $('#link_to_top').click(function () {
            $(this).blur();

            $('html,body').animate({ scrollTop: 0 }, 'nomal');

			return false;
        });
    }
});
*/

$(document).ready( function(){
	// Link to Top
	$('#link_to_top').click(function () {
		$('html,body').animate({ scrollTop: 0 }, 'fast');
		return false;
	});

	// Header Search
	// var default_query = 'あなたのお悩みをご記入ください(例：WEB製作,SEO)';
	var default_query = 'キーワードを入力してください';
	$('#header_search_form :text')
	.val( default_query )
	.focus( function() {
		if( $(this).val() == default_query ) {
			$(this).val('');
			$(this).css('background', '#fff');
		}
	})
	.blur( function() {
		if( $(this).val() == '') {
			$(this).val( default_query );
			$(this).css('background', '#fff');
		}
	});
	$('#header_search_form :image')
	.click( function() {
		if( $('#header_search_form :text').val() == default_query ) {
			$('#header_search_form :text').val('');
		}
		$('#header_search_form').submit();
		return false;
	});


});



