//Preload Images Function

jQuery.preloadImages=function()
{for(var i=0;i<arguments.length;i++)
{jQuery("<img>").attr("src",arguments[i]);}}

jQuery.preloadImages("images/popup_map.png");

jQuery(document).ready(function(){
	jQuery('#map, #maplink').click(function(e){
		var mapx = e.pageX + 'px';
		var mapy = e.pageY + 'px';
		if(jQuery.browser.msie && jQuery.browser.version < 7) {
			jQuery('select').hide();
			}
		jQuery('body').append('<div id="popup_map"><div>Drag Map</div><span>Close</span><img src="images/popup_map.png" width="100%" height="100%" alt="Map" /></div>');
		jQuery('#popup_map').css('width', '152px').css('height', '108px').css('left', mapx).css('top', mapy).css('margin-left', '-76px').css('margin-top', '-54px');
		jQuery('#popup_map').animate({width: "608px", height: "433px", marginLeft: "-304px", marginTop: "-217px"}, 150);
		jQuery('img', '#popup_map').pngFix();
		jQuery('div','#popup_map').mousedown(function(){
			jQuery('#popup_map').draggable();
		});
		jQuery('div','#popup_map').mouseup(function(){
			jQuery('#popup_map').draggable('destroy');
		});
		jQuery('span', '#popup_map').click(function(){
			jQuery('#popup_map').remove();
			if(jQuery.browser.msie && jQuery.browser.version < 7) {
				jQuery('select').show();
			}
		});
	});	
});
