$(document).ready(function(){
	
	$("a[rel^='gal']").prettyPhoto({
		theme: 'white_square',
		showTitle: false, 
		default_width: 720, 
		opacity: .70
	});
	
	
	
	$("#nav1 .lev2 a").hover(
		function()
		{
			$(this).parent().find("div").show();
		}, 
		function()
		{
			$(this).parent().find("div").hide();
		}
	);
	
  $('#mover').cycle({ 
    fx:     'fade', 
    speed:   500, 
    timeout: 6000, 
    prev:   '#cycle-prev',
    next:   '#cycle-next',
    pause:	false
    , startingSlide: 1 
  });
  
  $('.backtotop').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});
	
	
  
	var org_style = $('div.map').attr('style');
  $('a.land').hover(
  	function()
  	{
			var map = $(this).attr('rel');
		
			var path = '/files/' + map;
			$('div.map').attr('style', 'background-image: url(' + map + ')');
		},
  	function()
  	{
//			$('div.map').attr('style', '');
			$('div.map').attr('style', org_style);
		}
	);
	
});

