$(function(){

	/* Wink Effect */
	$(".filmstrip li,.content_box a img").hover(function(){
		$(this).css("opacity", "0.1");
		$(this).fadeTo("slow", 1.0);
	});

	/* Focus */
	$("input[type='text'], textarea").focus(function(){
		$(this).css("background", "#ffd");
	});
	$("input[type='text'], textarea").blur(function(){
		$(this).css("background", "#fff");
	});
});
