// JavaScript Document

function input_focus(el,str) {
	if (el.value == str) {
		el.value = "";
	}
	
}
function input_blur(el,str) {
	if (el.value == "") {
		el.value = str;
	}
	
}

//jQuery
$(function () {
	$('#submeniu').hide();	
	$('#submeniu').css('opacity','0');
	$("#meniu_companie").mouseenter(function () {
		$('#submeniu').show();
		$("#submeniu").animate({opacity: 1},200);
	});
	$("#meniu_holder").mouseleave(function () {
		$("#submeniu").animate({opacity: 0},200, function () {
			$('#submeniu').hide();	
		});
	});
	
});

