$(document).ready(function(e){
	$('#newsletter input[type=text]').blur(function() {
		if( $(this).attr('value') == '' ) { $(this).attr('value', $(this).attr('name')); }
	});
	$('#newsletter input[type=text]').focus(function() {
		$(this).attr('value', '');
	});
	
	$("#main_menu>li").hover(
		function () {
			$(this).addClass("over");
			$(this).find("div.sottomenu").css({"display":"block"});
		},
		function () {
			$(this).removeClass("over");
			$(this).find("div.sottomenu").css({"display":"none"});
		}
	);
	
	$('a.lb').colorbox({width:"639px", height:"550px", iframe:true });	
});
