I have found something... I used url parser i found... the code goes like this...
$(document).ready(function() {
var match = jQuery.url.attr('relative');
var $b = 'login.php';
if(match == $b) {
$('#LoginContainer').remove()
};
});
Now it have to be changed so that every link that contains login.php
do the same thing... something like contains, but I cannot get it
work...

