$(document).ready(function(){

	// PNG FIX
	$('img[src$=.png]').ifixpng();

	// SCROLLABLE HOME (promozioni)
	$('#promoScrollable').scrollable({
		items: '#promoItems'
		, size: 3
		, prevPage: '#promoPrev'
		, nextPage: '#promoNext'
	})
	
	//COLOR BOX
	$("a[rel='foto']").colorbox({
		transition:"elastic"
		, slideshow: true
		, slideshowSpeed: 3000
		, opacity: 0.95		
	});
	
	//COLOR BOX
	$("a[rel='foto2']").colorbox({
		transition:"elastic"
		, slideshow: true
		, slideshowSpeed: 3000
		, opacity: 0.95		
	});
	//COLOR BOX
	$(".privacy").colorbox({ width:"800px", height:"80%", iframe:true});
	
	// FORM CONTATTO: field highlight
	$('#form input.data, #form textarea')
		.focus(function(){
			$(this).css({ background: '#ffa' })
			.parent().css({color: '#000'})
		})
		.blur(function(){
			$(this).css({ background: '#fff' })
			.parent().css({color: '#555'})
		})

	// MESSAGGI DI SISTEMA DELLA FORM
	$("#formOk").submit(function() {
		var send = true;
		if($('#accept_privacy').is(':checked') == false) {
			send = false;
			$.fn.colorbox({width:"50%", inline:true, href:"#checkedPrivacy"});
			return false;
		}
	});

	
});

function isInteger(s)
{
	var i;
	for(i = 0; i < s.length; i++) {
		var c = s.charAt(i);
		if(((c < "0") || (c > "9"))) return false;
	}
	return true;
}
