$(document).ready(function() { 		
	$('.add_ym').click(function(){
		var ym = $('#uzer_ym').text();
		window.location='ymsgr:addfriend?'+ym;	
	});
	$('#uzer_ym').click(function(){
		var ym = $('#uzer_ym').text();
		ym = ym.replace(' ','');
		window.location='ymsgr:sendim?'+ym+'&m=';
        return false;	
	});
	$('#termeni_conditii').click(function(){
	    if(!$('#termeni').is(':animated'))
		  $('#termeni').load('termeni-si-conditii.html').slideToggle('slow');	
		return false;
	});
	$('#emoticons > img').click(function(){
		var smiley_code = ' :'+$(this).attr('title')+':';
		var text_area = $('#textarea').val();
		$('#textarea').val(text_area+smiley_code);
	});
	$('.im').click(function(){
		var ymc = $(this).attr('title');
		window.location='ymsgr:sendim?'+ymc+'&m=';	
		return false;
	});
	$('.im2').click(function(){
		var ymc = $(this).text();
		window.location='ymsgr:sendim?'+ymc+'&m=';	
		return false;
	});
   $(".id_container ul li").click(function(){
        window.location.href = $(this).children("a").attr("href");    
   });    
   $("#raporteaza").click(function(){
        $("#report_form").modal();
        return false;
   });
   $("#report_msg").click(function(){
        $(this).slideUp('slow');
   })
}); 
