jQuery(document).ready(function($) {
$('#addFavorite').jFav();
$('#dropLogin').toggle(function() {
  $("#loginBox").slideDown("slow");
}, function() {
  $("#loginBox").slideUp("slow");
});
$(".activeNum").mouseover(function(){
    $(this).css("color","#ff0000")
}); 
    })
function checkLogin() {
if(document.login.matchEmail.value!="" && document.login.matchPassword.value!="") {
    document.login.submitit.disabled=true;
  return true;
}
 else if (document.login.matchEmail.value!=""  ){
    alert("Please Input Your Password!");
       return false;
}
 else  {
alert("Please enter email and password.");
return false;}
 } 

