NotiOpened = '0';
if (NotiOpened == '0';) {
$("#notification").slideDown("slow");
$('#notification').load('notification.php');
NotiOpened = '1';
} else {
$("#notification").slideUp("slow");
NotiOpened = '0';
}
what's wrong with it?