// JavaScript Document
var page;
$(document).ready(function(){
})

$('#menu a').live('mouseenter',function(){
		$(this).stop().animate({'margin-left':'10px'},150)									
})
$('#menu a').live('mouseleave',function(){
		$(this).stop().animate({'margin-left':'0px'},150)									
})
$('#menu a').live('click',function(){
	page = $(this).attr('rel')
	window.location = "?p="+page;
});

$('.social_icons').live('mouseenter', function(){
	$(this).stop().animate({'opacity':'0.5'},150)									  
})

$('.social_icons').live('mouseleave', function(){
	$(this).stop().animate({'opacity':'1'},200)									  
})
