// JavaScript Document
$(document).ready(function(){

		UserWidth = window.screen.width
		UserHeight = window.screen.height
		//alert(UserWidth);
		//alert(UserHeight);
		if(UserWidth <= 800 && UserHeight <= 600){
			$('#MenuBarPeq').fadeIn('slow');
		}else{
			$('#MenuBarFixo').fadeIn('slow');
		}
		

})
