$(document).ready(function(){ 
	$('#s1').cycle('fade');	
	
	
	$('.link').each(function() {
	 var $a = $(this).find('a');
	 
	 var href = $a.attr('href');
	 
	 var href2 = href.replace('mailto:','');
	 
	 
	 if ($a.length > 0 && href === href2) {
	   
	 
      $(this).css('cursor','pointer').click(function(e) {
        if (e.target.tagName != "A") {   
    		  $a.click();
    		}
    	});
  	
  	} else {
  	 $(this).removeClass('link');
  	}
	
	});
	
	
	
	$('.link a').click(function(){
		   window.location = $(this).attr('href');
	});
	

	var $unit = $('.unit');
	$unit.css('margin-bottom','-10px');
	
	$unit.hide();
	$unit.find('.medias').hide();
	
	$unit.first().show();
	if ($unit.length) {	
	$('#contact_block').html($unit.first().find('.medias').html());
	}
	$('.unit_li').click(function() {
		show_unit($(this).attr('rel'));
	}).css('cursor','pointer');
//	$('#unit_1').show();

  $('a[title="Photos"]').attr('target','_blank');

});


function show_unit(id) {
	$('.unit').hide();
	var $n = $('#'+id);
	$('#contact_block').html($n.find('.medias').html());
	
	$n.show();
}
