$(function() {
	$( '#q' ).focus(function() {
		if( $( this ).val() === 'サイト内検索' ) {
			$( this ).val('');
		}
	}).blur(function() {
		if( $( this ).val() === '' ) {
			$( this ).val( 'サイト内検索' );
		}
	});

	$( '#introduction .contFigure a' ).lightBox();

	if( $.browser.opera ) {
		$( 'head' ).append( '<link href="css/opera.css" rel="stylesheet" media="screen,print" />' );
	}
}); 

