// JavaScript Document

var user_id;

function rollUserMenu() {
	$("#menuHomeBt5,#menuHomeBt2,#menuHomeBt3,#menuHomeBt4,#menuHomeBt6").mouseover(function() { $(this).css("borderBottom","3px solid #4d6f80"); });
	$("#menuHomeBt5,#menuHomeBt2,#menuHomeBt3,#menuHomeBt4,#menuHomeBt6").mouseout(function() { $(this).css("borderBottom","0px solid #4d6f80"); });
}

function sendMsg() {
	mAddr = user_id;
	mTopic = $("#msgDialogTopic").val()
	mBody = $("#msgDialogArea").val();

	$.get('_sendMessage.php', {msg_addressee:mAddr, msg_topic:mTopic, msg_body:mBody}, function(data){
				window.location = "?action=profile&user_id="+user_id;
	});
}

function addFriend() { 
	window.location = "?action=profile&set_friend=1&user_id="+user_id;
}

function showGallery() {
	window.location = "?action=gallery&user_id="+user_id;
}

function editGallery() {
	window.location = "?action=account&mode=gallery";
}


function rateMe(rateValue) {

	$.get('_rateProfile.php', {rate:rateValue, user_id:user_id}, function(data){
				window.location = "?action=profile&user_id="+user_id;
	});
}

$(document).ready(function(){
	showHideSp(false);
	menu(0);
	rollUserMenu();
	$('#dialogNewMsg').jqm( {trigger: '#msgLinkA'} );
	$("#menuHomeBt1").css("borderBottom","3px solid #4d6f80");
	user_id = $("#userId").val();
});
