$(function(){

	//* ----------rollover-------------------
	
	$('#g_navi a img').rollover();
	$('#ft_navi a img').rollover();
	$('#recruit a img').rollover();
	$('#top_recruit a img').rollover();
	
	
	//* ----------toppage thumbnail----------
	
	$('.mono').hide().imagesLoaded(function(){
		$(this).show().hoverizr({
			width:"296",
			height:"216",
			stretch:"yes",
			speedIn:300,	
			speedOut: 200
	    });
	});
	
	//* ----------preview--------------------
	
	$('#works_preview').bxGallery({
		maxwidth:624,
		thumbwidth:68,	
		//thumbcrop:true,
	});
	
	
	
	//* ----------works caption--------------
	
	/*jQuery('img.captify').captify({
		// all of these options are... optional
		// ---
		// speed of the mouseover effect
		speedOver: 'fast',
		// speed of the mouseout effect
		speedOut: 'fast',
		// how long to delay the hiding of the caption after mouseout (ms)
		hideDelay: 0,
		// 'fade', 'slide', 'always-on'
		animation: 'slide',
		// text/html to be placed at the beginning of every caption
		prefix: '',
		// opacity of the caption on mouse over
		opacity: '0.7',
		// the name of the CSS class to apply to the caption box
		className: 'caption-bottom',
		// position of the caption (top or bottom)
		position: 'bottom',
		// caption span % of the image
		spanWidth: '100%'
		});
	*/
		jQuery('.rightlink a img').hover(function(){
			jQuery(this).fadeTo(0, 0.7);
			},function(){
			jQuery(this).fadeTo(0, 1);
			});
		jQuery(".release-img").hover(
        function () { jQuery(".caption",this).fadeTo("fast",0.7); },
        function () { jQuery(".caption",this).fadeOut("fast"); }
    );


	
})










