$(document).ready(function() {
	$("#url").focus(function() {
		if($(this).val()=="")
			$(this).val("http://");
	});
	
	$("#url").blur(function() {
		if($(this).val()=="http://")
			$(this).val("");
	});
	
	$("#fmenu").mouseover(function() {
		if($("#td_fmenu").attr('effect')==1)
			$("#img_fmenu").css('z-index','2');
	});
	
	$("#fmenu").mouseout(function() {
		if($("#td_fmenu").attr('effect')==1)
			$("#img_fmenu").css('z-index','1');
	});
});
