// JavaScript Document
	$(document).ready(function() {
		$(".topMenuAction").click( function() {
			if ($("#openCloseIdentifier").is(":hidden")) {
				$("#slider").animate({ 
					marginTop: "-120px"
					}, 500 );
				$("#topMenuImage").html('<img src="http://www.pdasmart.com.br/wp-content/themes/PDASmart/img/entrar.png" alt="open" />');
				$("#openCloseIdentifier").show();
			} else {
				$("#slider").animate({ 
					marginTop: "0px"
					}, 500 );
				$("#topMenuImage").html('<img src="http://www.pdasmart.com.br/wp-content/themes/PDASmart/img/entrar.png" alt="close" />');
				$("#openCloseIdentifier").hide();
			}
		});  
	});