			$(document).ready(function(){
			  $(".hpmain-melbourne, .hpmain-sydney").mouseenter(function(){
				$('.default').hide();
			  });
			  $(".hpmain-melbourne").mouseenter(function(){
				$('.closeable').hide();
				$(".hidden-2").fadeIn('5');
			  });
			  $(".hpmain-sydney").mouseenter(function(){
				$('.closeable').hide();
				$(".hidden-5").fadeIn('5');
			  });
				//setup dimmer on hover
				$(".hpmain-melbourne").hover(
				function(e){
					$(".hpmain-melbourne").css({"opacity":.9});
				   $(this).addClass("opacity"); 
				},
				function(e){
					$(".hpmain-melbourne").css({"opacity":100});
					$(this).removeClass("opacity");
				}
			  );
				$(".hpmain-sydney").hover(
				function(e){
					$(".hpmain-sydney").css({"opacity":.9});
				   $(this).addClass("opacity"); 
				},
				function(e){
					$(".hpmain-sydney").css({"opacity":100});
					$(this).removeClass("opacity");
				}
			  );

});
