var ROOT_URL = 'http://'+window.location.hostname;
var THIS_PAGE = ROOT_URL+window.location.pathname;

$('document').ready(
	function() {
		$('select#language').change(function() {
				window.location.href = THIS_PAGE+'?lang='+$(this).val();
			}
		);

		$.postAdmin = function(data, callback) { 
			$.post('./ajax_action.php', data, 
				function(data) {
					if(data.error) {
						alert(data.errorText);
					}
					else {
						alert(data.responseText);
					}
				}, 'json');
		};

		/**
		 *	IFrame Facebook (W3C compliant)
		 */
		$('div#facebookLike div#iframe').html('<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FGeekinSide%2F155253391187984&amp;layout=box_count&amp;show_faces=true&amp;width=150&amp;action=recommend&amp;colorscheme=dark&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; padding-left:35px; padding-top:5px; margin:50 auto; height:65px;" allowTransparency="true"></iframe>');

		// Hide elements with .toHide class (with JS, so users who don't activate it can see the element's content)
		$('.toHide').addClass('hide');
		
		$('a.leaveComment').click(function(){
			$(this).next('.hide').removeClass('hide');
			return false;
		});

		$('a.displayOrHideThisPhp').click(function(){
			$(this).next('.php').toggleClass('hide');
			return false;
		});
	}
);

function popup(url, id, largeur, hauteur) {
	var popup = window.open(url, id, 'toolbar=0,location=0,directories=0,status=yes,menubar=0,scrollbars=yes,resizable=yes,width='+largeur+',height='+hauteur+',left=50,top=50');
}	

