window.addEvent('domready',function(){
	var $t = $$('.fav_it');
	
	$cnt = '<img src="http://m.oleeee.com/f/i/themes/defaut/Favorites_12x12.png" alt="" /><br />أضف للمفضلة';
	$cnt_un = '<img src="http://m.oleeee.com/f/i/themes/defaut/Favorites_12x12_un.png" alt="" /><br />أزل من المفضلة';
	
	
	var req = new Request({
		url: 'ajax.php',
		onSuccess: function(txt){
			var newBox = new facebox(txt);
		},
		onFailure: function(){
			var newBox = new facebox('لم يتم الاتصال بالملفات للازمة للقيام بهده العملية');
		}
	});
	
	$t.each(function(item){
	
	item.addEvent('click',function(){
		req.send('do=fav&t='+$t.getProperty('rel'));
			if(item.get('html').test('Favorites_12x12.png')){
				$t.each(function(it){
					it.set('html',$cnt_un);
				});
			}
			else if(item.get('html').test('Favorites_12x12_un.png')){
				$t.each(function(it){
					it.set('html',$cnt);
				});
			}
	});
	
	
	});
	
	
	
});