$(function(){

	$('tr').attr('bgcolor','');
	$('td').attr('bgcolor','');
	$('.rollOver a').live("mouseover",
		function()
		{
			$(this).find('.baseImage').hide();
			$(this).find('.overImage').show();
		}
	);
	$('.rollOver a').live("mouseout",
		function()
		{
			$(this).find('.baseImage').show();
			$(this).find('.overImage').hide();
		}
	);
	
	$('#map').html('<iframe width="710" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ru/maps?q=55.122809,61.493906&amp;num=1&amp;t=h&amp;sll=55.127633,61.484112&amp;sspn=0.048251,0.119236&amp;ie=UTF8&amp;ll=55.125263,61.489878&amp;spn=0.019631,0.060854&amp;z=14&amp;output=embed"></iframe><br /><small><a href="http://maps.google.ru/maps?q=55.122809,61.493906&amp;num=1&amp;t=h&amp;sll=55.127633,61.484112&amp;sspn=0.048251,0.119236&amp;ie=UTF8&amp;ll=55.125263,61.489878&amp;spn=0.019631,0.060854&amp;z=14&amp;source=embed" style="color:#0000FF;text-align:left">Просмотреть увеличенную карту</a></small>');
});
