$(function(){
	$("#pop .column a").each(function(){
		var href = $(this).attr("href");
		if(href.indexOf("petit-bateau") > 1){
			$(this).attr("target","MainWindow");
		} else {
			$(this).attr("target","_blank");
		}
	});
});

// フォーカスで消える文字
$(function(){
    $("#search,#search2").focus(function() {
        if($(this).val() == $(this).attr('defaultValue'))
            $(this).val('');
    }).blur(function() {
        if(jQuery.trim($(this).val()) == "") {
            $(this).val($(this).attr('defaultValue'));
        }
    });
});
