$(document).ready(function()
{
	//menu
	$("#menu .selected a img")[0].src = $("#menu .selected a img")[0].src.replace("_inactive","_activ");
	
	$("#menu li a").hover(
	 function()
	 {
	  $(this).children("img")[0].src = $(this).children("img")[0].src.replace("_inactive","_activ");
	 },
	 function()
	 {
	   if(!($(this).parent().hasClass("selected")))
		$(this).children("img")[0].src = $(this).children("img")[0].src.replace("_activ","_inactive");
	 }
	);
	
	//email
	$.post('decrmail.php',{
	  pass: "aelr,fDFgsed"
	},function(txt){
	  $('span.splendidmail').html(txt);
	});
	
	//twitter
	
    /*$.get('twitter.php',null,function(txt){
	  $('#tweets').html(txt);
	});*/
	
	//twitter_timeout();
	
	function twitter_timeout()
	{
		setTimeout(function(){
			$.get('twitter.php',null,function(txt){
			  $('#tweets').html(txt);
			});
			
			twitter_timeout();
		},60000);
	}
});

