/* ****************************************************

	@file:		   global.js
	@description:  Comportements globaux
	@author:       remi (ixmedia.com)
	@updated:	   20080529

***************************************************** */

$(document).ready(function() {
	$('.wp-polls-archive').each(function() {
		if (this.childNodes.length == 0) {
			$(this).remove();
		}
	});
	$(document).bind("contextmenu",function(e){
        return false;
    });
})

