$(function(){
	$('div.hidenow').hide();
	$('a.gallerylink, a#gal, a.gal').colorbox({maxWidth: '90%', maxHeight: '90%'});
	$('a.vidgal').colorbox({maxWidth: '90%', maxHeight: '90%', rel: "nofolow"});

			
	$('div.fxmestupid').find('span').each(function(){
		$(this).css('font-size', '11px');
		$(this).css('font-family', 'Tahoma');
		$(this).css('font-weight', 'normal');
	});
	
	$('.MsoNormal').css('font-weight', 'normal');
	$('div.fxmestupid').css('font-weight', 'normal');
	
	$('a.loc').click(function(event){
		event.preventDefault();
		
		var lala = $(this);
		
		if (!$('div#'+lala.attr('rel')).is(':visible')) 
		{
			
			$('div.hidenow, div.potential_hide').hide('slow');
		}
		
		$('div#'+lala.attr('rel')+', div.'+lala.attr('alt')).show('slow');
	});
	
	$('div[rel=housemap] area').hover(
		function(){
			var newpos = ($(this).attr('alt'))*237;
			$('img#house').css('background-position', '0 -'+newpos+'px');
			$('span#namer').html($(this).attr('name'));
		}, 
		function(){
			var newpos = ($('div[rel=housemap]').attr('alt'))*237
			$('img#house').css('background-position', '0 -'+newpos+'px');
			$('span#namer').html('&nbsp;');
		});

	var initpos = inithouse*237;
	$('img#house').css('background-position', '0 -'+initpos+'px');


	$('div[rel=floormaps] area').hover(
		function(){
			var newpos = ($(this).attr('alt'))*516;
			$('img[name=thefloor]').css('background-position', '0 -'+newpos+'px');
			$('span#objectname').html($(this).attr('name'));
		}, 
		function(){
			$('img[name=thefloor]').css('background-position', '0 0');
			$('span#objectname').html('&nbsp;');
		});


	$('div[rel=housemapbig] area').hover(
		function(){
			var newpos = ($(this).attr('alt'))*600;
			$('img#housebig').css('background-position', '0 -'+newpos+'px');
			$('span#namer').html($(this).attr('name'));
		}, 
		function(){
			var newpos = ($('div[rel=housemapbig]').attr('alt'))*600
			$('img#housebig').css('background-position', '0 -'+newpos+'px');
			$('span#namer').html('&nbsp;');
		});


});




