function changeNetworkSite()
{
	var _value = jQuery("select#sel-networksite").val();
	if(_value == "") {
		return false;
	} else {
		window.location.href = _value + '/';
	}
}
function shareOnFacebook()
{
	var u = location.href;
	var t = document.title;
	window.open
	(
		'http://www.facebook.com/sharer.php?u=' + encodeURIComponent(u) + '&t=' + encodeURIComponent(t),
		'sharer','toolbar=0,status=0,width=626,height=436'
	);
	return false;
}

function initPmiBlog()
{
	jQuery( '.share-on-facebook a' ).click( shareOnFacebook );
}
jQuery( document ).ready( initPmiBlog );