/*	Project: 	Zloche landing page	Date: 		08/09/10	Author: 	Someone, somewhere. I forget. I took this from Commun's website.		Last Modification: 08/09/10*/function shareFacebook(){	u=location.href;	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)		,'sharer'		,'toolbar=0,status=0,width=626,height=436'	);}function shareTwitter(){	u=location.href;	window.open('http://twitter.com/home?status='+encodeURIComponent(u)		, '_newTab'	);}$(function(){	/*******************	 *	Event handlers	 ******************/	//Sharing buttons	$("#facebookshare").click(function(){		callService("action=facebook", function(){})		shareFacebook();	});	$("#twittershare").click(function(){		callService("action=twitter", function(){})		shareTwitter();	});	//Contact link	$("#info").click(function(){		callService("action=info", function(){})		alert("Questions?\nCommentaires?\nInsultes?\n\nFaites-les parvenir par courriel \u00e0 l'adresse \nalexandre.leclair@zloche.net");	});		$("#facebooklike").mouseenter(function(e)	 {		  facebookLikeToggle(e);	 });		$("#facebooklike").mouseleave(function(e)	 {		  facebookLikeToggle(e);	 });});/////	IE is driving me NUTS.///function facebookLikeToggle(facebookElement){	$(facebookElement.target).animate({		"paddingBottom": (fblikeHovering?'50':'0') + 'px'	}, 500, function(){ fblikeHovering = !fblikeHovering; });}
