/*
 * Popstars Academy Academy Locations Controller
 *
 * (C) 2009 Karl Orbell, 2Creation.com Ltd
 */
$(document).ready(function(){$("#location-profile").pngFix();$(".town-item a").click(function(){var a=$(this).attr("href");$("#locations-overlay").height($("#locations-wrapper").height()).show();$.get(a,{ajax:1},function(e){var i=$("<div/>").append(e);var g=i.find("#location-profile");if(g.size()>0){$("#location-profile").replaceWith(g);$("#location-profile").pngFix();var c=getViewportScrollY();var f=$(window).height();var b=$("#locations-wrapper").offset().top;var h=$("#locations-wrapper").height();var d=$("#location-profile").height();var j=c-b+(f/2)-(d/2);if(j+d>h){j=h-d}$("#location-profile").css("top",(j>0?j:0)+"px");$(".close-button,#locations-overlay").click(function(){$("#location-profile,#locations-overlay").hide();return false});document.onkeydown=function(k){if(k==null){keycode=event.keyCode}else{keycode=k.which}if(keycode==27){$(".close-button").click()}}}return true});return false})});function getViewportScrollY(){var a=0;if(document.documentElement&&document.documentElement.scrollTop){a=document.documentElement.scrollTop}else{if(document.body&&document.body.scrollTop){a=document.body.scrollTop}else{if(window.pageYOffset){a=window.pageYOffset}else{if(window.scrollY){a=window.scrollY}}}}return a};