/**
 *
 *	Functions
 *
 *
 */
 
$("#contactoForm").live("click",contactoForm);
 
function contactoForm( )
{
	var $dialogContent = $("#contacto");
	$dialogContent.dialog({
		modal: true,
		title: "Contáctanos",
		width: '500px',
		close: function() {
		   $dialogContent.dialog("destroy");
		   $dialogContent.hide();
		},
		buttons: {
			Enviar : function(){
				var url		= "controller/sendmail.php";
				
				$.post(url, $("#contacto").serialize(),
				  function(data)
				  {
					  $("#mensajes").css({"display":"block"});
					  $("#mensajes").html(data);
				  }
				);
				
				$dialogContent.dialog("close");
			},
			Cancelar : function(){
				$dialogContent.dialog("close");
			}
		}
	}).show();
}


function twitter( )
{
	new TWTR.Widget({
	  version: 2,
	  type: 'profile',
	  rpp: 1,
	  interval: 6000,
	  width: 310,
	  height: 300,
	  theme: {
		shell: {
		  background: '#172c43',
		  color: '#ffffff'
		},
		tweets: {
		  background: '#15293f',
		  color: '#ffffff',
		  links: '#b78a37'
		}
	  },
	  features: {
		scrollbar: false,
		loop: false,
		live: false,
		hashtags: true,
		timestamp: true,
		avatars: false,
		behavior: 'all'
	  }
	}).render().setUser('teprogramo').start();
}
