$(function(){
    $('.check_hover').live('mouseover', function(){
        $(this).addClass('hover');
    });
    $('.check_hover').live('mouseout', function(){
        $(this).removeClass('hover');
    });

    $('.fancybox').fancybox();

    $('body.index .creator img').attr('src', 'images/emotion_dark.gif');
    
    var nnn = 0;
    var ggt = setInterval(customizegooglesearch, 50);
    var sst = $('#sst').val(); // search input text;
    function customizegooglesearch(){
		nnn++;
		if(nnn == 30){
			clearInterval(ggt);
		}
		var as = $('.searchBlock input[name="q"]');
		if(as.length > 0){
			clearInterval(ggt);
			/*
			as.css('background', 'rgb(255, 255, 255)').val(sst).bind('click', function(){
				if($(this).val() == sst){
					$(this).val('');
				}
			});
			* */
			as.css('background', '#fff').css('border', 'none').css('padding', '0');
			
			as.val(sst).hover(function(){
				if($(this).val() == sst){
					$(this).val('');
				}
			}, function(){
				if($(this).val().length == 0){
					$(this).val(sst);
				}
			});
		}
	}
});

