jQuery(document).ready(function() {
//---------------------------------


//---------------------------------
});


function FaqShow(FaqID) {
	if ( $("#Faq"+FaqID).is(":hidden")==true ) {
		if ( $("#Faq"+FaqID).html().length==0 ) {
			$("#Faq"+FaqID).load("AJAX.asp?job=FAQ&FaqID="+FaqID);
		}
		$("#Faq"+FaqID).show('blind');
	}
	else {
		$("#Faq"+FaqID).hide('blind');
	}
}


function BlogShow(BlogID) {
	if ( $("#Blog"+BlogID).is(":hidden")==true ) {
		if ( $("#Blog"+BlogID).html().length==0 ) {
			$("#Blog"+BlogID).load("AJAX.asp?job=BLOG&BlogID="+BlogID);
		}
		$("#Blog"+BlogID).show('blind');
	}
	else {
		$("#Blog"+BlogID).hide('blind');
	}
}


function PhotoShow(PhotoID, PhotoNumber) {
	if ( $("#Photo"+PhotoID).is(":hidden")==true ) {
		$("#Photo"+PhotoID).html("<img src=photo/"+PhotoID+"/"+PhotoNumber+".jpg width=650 />");
		$("#Photo"+PhotoID).show('blind');
	}
	else {
		$("#Photo"+PhotoID).html("<img src=photo/"+PhotoID+"/"+PhotoNumber+".jpg width=650 />");
		$("#Photo"+PhotoID).show('bounce',2);
	}
}


function FriendShow(FriendID, PhotoNumber) {
	if ( $("#Friend"+FriendID).is(":hidden")==true ) {
		$("#Friend"+FriendID).html("<img src=friend/"+FriendID+"/"+PhotoNumber+".jpg width=650 />");
		$("#Friend"+FriendID).show('blind');
	}
	else {
		$("#Friend"+FriendID).html("<img src=friend/"+FriendID+"/"+PhotoNumber+".jpg width=650 />");
		$("#Friend"+FriendID).show('bounce',2);
	}
}
