			$(document).ready(function(){
				$("#slider").hide();
       			 movielocation = 0; 
       			 $("#navigation .location").click(function() {
       			 	if (movielocation == 0) {
       			 		$("#slider").slideToggle("slow");
       			 		$(this).css("backgroundPosition","0 -34px");
       			 		movielocation = 1;
       			 	}
       			 	else {
       			 		$("#slider").slideToggle("slow");
       			 		$(this).css("backgroundPosition","0 0");
       			 		movielocation = 0;
       			 	}
       			 });
       			 $("#navigation .location").hover(function() {
       			 	if (movielocation == 0) {
       			 		$(this).css("backgroundPosition","0 -34px");
       			 	}
       			 }, function() {
       			 	if (movielocation == 0) {
       			 		$(this).css("backgroundPosition","0 0");
       			 	}
       			 });
       		});