//  My sorry-ass Js file.
	
	$(document).ready(function(){		
			
			function fbF() {
			
				var fbF = ".fbF"
				var fbAnimationSpeed = 1000;
				var navEasingStyle = "easeOutExpo";
			
				$(fbF).corner("tr br");
				$(fbF).css("display","block");
				
				var configFB = {    
				     sensitivity: 4, // number = sensitivity threshold (must be 1 or higher)    
				     interval: 200, // number = milliseconds for onMouseOver polling interval    
				     over: fbHoverIn, // function = onMouseOver callback (REQUIRED)    
				     timeout: 400, // number = milliseconds delay before onMouseOut    
				     out: fbHoverOut // function = onMouseOut callback (REQUIRED)    
				};
	
				$(fbF).hoverIntent( configFB )
							
				function fbHoverIn() {
					$(this).animate({
						marginLeft:345
					}, fbAnimationSpeed, navEasingStyle);
				}
				
				function fbHoverOut() {
					$(this).animate({
						marginLeft:0
					}, fbAnimationSpeed, navEasingStyle);
				}
			
			}
			
			//fbF();
						
	});
	
// Sharing Functions

	function postTwitter(u) {
		window.open( "http://twitter.com/home?status=" + u,'sharer', "toolbar=0,status=0,width=626,height=436"  );
		return false;
	};
	
	function postFacebook(u,t) {
		window.open('http://www.facebook.com/sharer.php?u='+u+'&t='+t,'sharer','toolbar=0,status=0,width=626,height=436');
		return false;
	};
