$(document).ready(function(){

$("#header").click(function(){
window.location = "/";
});

var pop_show = 0;

$(".button6 a").click(function(){

if(pop_show == 0){
$("#mlist_pop_container").fadeIn("slow");
pop_show = 1;
} else {
$("#mlist_pop_container").fadeOut("slow");
pop_show = 0;
}

return false;
});

$("#close_button").click(function(){
$("#mlist_pop_container").fadeOut("slow");
pop_show = 0;
});

});
