var data;

$(document).ready(function() {
	
///////////////////////////////////////////////////////////:
//
// GESTION DES DERNIERS CONNECTES
//
///////////////////////////////////////////////////////////

$("ul.listOfConnected li ").each(function() // Notice the each function 
					{
   $(this).qtip({
   content: "<div class='bulletop'><div class='bulleleftpic'><img src='photos/"+$(this).attr("idMembre")+"/miniminithumbs/"+$(this).attr("idPicture")+".jpg' class='image_bordered' width='70'></div><br /><span class='boldtitle'>"+$(this).attr("pseudo")+"</span> <br /><span class='normalgrey'>"+$(this).attr("age")+" ans</span><br /><span class='normalgrey'>"+$(this).attr("location")+"</span></div>",
   style: { 
    name: 'light'
   },
   hide: {
		when: { event:'mouseout' },
		effect : {
			type:'fade',
			length:300
			}
   },
   show: {
		when: { event:'mouseover' },
		effect : {
			type:'fade',
			length:300
			}   
   }
   });
});										  
	
///////////////////////////////////////////////////////////:
//
// GESTION DU MENU
//
///////////////////////////////////////////////////////////

$('#gotoMessage').click(function() {
								 
					$('#messages').trigger("click");
								 
								 });



$('#gotoFlash').click(function() {
								 
					$('#profil').trigger("click");
								 
								 });


$('#gotoRequest').click(function() {
								 
					$('#profil').trigger("click");
								 
								 });


$('#gotoVisite').click(function() {
								 
					$('#profil').trigger("click");
								 
								 });

$('#gotoDilings').click(function() {
								 
					$('#dilings').trigger("click");
								 
								 });



	});
			   
				
						   
						   


