
// :focus for IE
$(function(){
	$("input[@type='text'],textarea")
		.focus(function(){
			$(this).addClass("focus");
		})
		
		.blur(function(){
			$(this).removeClass("focus");
		});
});

/*
// jQuery LightBOX/
$(function(){
	$("a[@rel*=lightbox]").lightBox({
		overlayBgColor: "#ffffff",
		overlayOpacity: "0.7",
		txtImage: "拡大画像",
		txtOf: "/"
		}
	);
});



// Fancy Box
$(document).ready(function() { 
	$(".fancybox").fancybox();
	$(".test a").fancybox({
		'hideOnContentClick': true
	});

	$("p#test3 a").fancybox({
		'zoomSpeedIn': 0,
		'zoomSpeedOut': 0,
		'overlayShow': true
		});
});

*/