jQuery(document).ready(function(){
	jQuery(":text,textarea").focus(function(){
		jQuery(this).parent().addClass("currentFocus");
		jQuery(".currentFocus .desc").css({"color" : "#ff5a00"});
		jQuery(".currentFocus .message_input, .currentFocus #author, .currentFocus #email, .currentFocus #url").css({"border-color" : "#ff5a00", "color" : "#000"});
	});

	jQuery(":text,textarea").blur(function(){
		jQuery(this).parent().removeClass("currentFocus");
		jQuery(".message_input, .desc, #author, #email, #url").removeAttr("style");
	});
	
	jQuery(":submit").css({
		"background":"url(images/etoile2_gm.png) no-repeat",
		"background-color":"#9e0404", /*#0d0d0d;*//*"#00a2ad"*/
		"background-position":"5px center",
		"border":"none",
		"color":"white",
		"font-weight":"bold",
		"padding":"2px 2px 2px 2px",
		"cursor":"pointer"
	});


	/*jQuery("#sidebar ul li ul li").hover(function(){
		jQuery("#sidebar ul li ul li").css({"cursor" : "pointer"});
	});*/
	
	/*jQuery("#sidebar ul li ul li").click(function(){
		window.location=jQuery(this).find("a").attr("href");
		return false;
	});*/
	
	/*dropdown menu 20090805*/
	jQuery("div#main_navi ul.left li").hover(
		function(){jQuery("ul",this).css("display", "block");jQuery("ul li ul",this).css("display", "none");},
		function(){jQuery("ul",this).css("display", "none");}
	);
	
	jQuery("a.rss").nudge({property:"bottom",direction:"",amount:14,duration:166});	
});
