$(function() {
	$('tbody tr').hover(function() {
	  $(this).addClass('odd');
	}, function() {
	  $(this).removeClass('odd');
	});
	
	$("div#pubMini").find("a").each(function(index) {
		if ((index%2) == 0) $(this).children("img").addClass("paddingRight");		
		$("div#pubMini").append($(this).clone(true));
	});
	$("div#pubMini div").remove();

	$("#fuser").bind("focus",function() {
		if ($(this).val() == "username") {
			$(this).val("");
		}
	}).bind("blur",function() {
		if ($(this).val() == "") {
			$(this).val("username");
		}
	});
	
	$("#fp").bind("click",function() {
		$.ajax({
			type: "POST",
			url: "remote/l.php",
			data: "cmd=l&u="+$("#fuser").val()+"&p="+$("#fpass").val(),
			success: function(msg){
				if (msg == "1") {
					window.location = 'area_socio.php';	
				}
				else {
					window.location = 'area_fl.php';		
				}
			}
		});								   
	});
});
