jQuery(document).ready(function()
{
	jQuery('#mycarousel').jcarousel({ visible: 4});
	jQuery('#verticalcarousel').jcarousel({vertical: true,visible: 3});		
});


function setGround()
{
	var groundElement = document.getElementById('logo_turismo'); 
	var mingroundheight = groundElement.offsetHeight;
	
	var groundheight = (document.getElementById("painel_centro").offsetHeight)-135;
	
	if ( mingroundheight < groundheight )
	{groundElement.style.height=groundheight + 'px';}

} 


function checkdate(datetype)
{
	dateini=$("#date_ini").val();
	dateend=$("#date_end").val();

	if (dateini!="" && dateend!="")
	{
		if (dateini>dateend)
		{
			alert("A data inicial deve de ser anterior à data final.");
			$("#date_"+datetype).val("");
		}
	}
}
