jQuery(document).load(
	function(){
		jQuery('#evidenza').css({top:jQuery('#offerte_home').offset().top,left:jQuery('#offerte_home').offset().left-26});
	}
);

jQuery(document).load(function(){
	jQuery('#offerte_home').css({height:jQuery('#content').css('height')});
});

jQuery(document).ready(function(){
	jQuery(document).pngFix();
	jQuery('#menuist li a').each(function(){
		var curObj = this;
		if(jQuery(curObj).innerHeight() !== 41){
			jQuery(curObj).css({padding:'0.469em 0'});
		}
	});
	jQuery('.box_casa:first').css({borderRight:'1px solid #ce998b'});
	jQuery('.box_casa:last').css({borderLeft:'1px solid #bf7d6e'});
	
	jQuery('#evidenza').css({top:jQuery('#offerte_home').offset().top,left:jQuery('#offerte_home').offset().left-26});
	
	jQuery('#formcontatti>div').each(
		function(i){
		
			if(i%3==0&&i<9){
				jQuery(this).after('<div class="clearer">&nbsp;</div>');
			}
			
		}
	);
	
	jQuery('#modulo_prenotazione>div').each(
		function(i){
		
			if(i%2==0&&i<9){
				jQuery(this).after('<div class="clearer">&nbsp;</div>');
			}
			
		}
	);
	
	if(jQuery('#player').length>0){
		flowplayer("player",{
			src:'/flowplayer/flowplayer-3.0.0.swf',
			wmode: 'transparent'
			}, {clip: { 
				scaling: 'fit' 
			}
		});
	}
	
});

function chImg(link){
	var newImg = jQuery(link).attr('href');
	jQuery(link).parent().parent().parent().children('.foto_casa').children('a').children('img').stop();
	jQuery(link).parent().parent().parent().children('.foto_casa').children('a').children('img').animate({opacity:0},500,'linear',function() {
		jQuery(link).parent().parent().parent().children('.foto_casa').children('a').children('img').attr('src',newImg);
	});
	jQuery(link).parent().parent().parent().children('.foto_casa').children('a').children('img').animate({opacity:1},500,'linear');
	return false;
}

