// JavaScript Document
$(document).ready(function () {
        
	// Campi input	
	$('input,textarea').emuPlaceholder();
	
	var height = 0;
	$('#container').height() > height ? height = $('#container').height() : "";
	$('#sidebar').height() > height ? height = $('#sidebar').height() : "";
	
	$('#container').height(height+"px");
	$('#sidebar').height(height+"px");
	
	
});


