window.addEvent('domready', function(){
	$$(".clicked").each(function(elt){
		elt.addEvent('click',function(e){
			var url = this.get('href');
			e.stop();
			var s = (this.id).replace("clicked_",'');
			var jsreq = new Request.JSON({
				url : "http://www.jeromesadou.com/en/clicked/" + s,
				onSuccess : function(){
					window.location = url;
				}
			}).get();
		});	
	});
	
	//var message_view = '<div style="position:absolute;margin:0;top:0;padding:0;background :#FFFFFF;width:140px;height:105px;-moz-border-radius:5px;-webkit-border-radius:5px;"><h2 style="color : #000000;">Click on the photo to view large</h2>';
	var message_view = new Element("span",{
		"text":"Click on the photo to view large",
		"styles":{
			"margin":"5px",
			"font-weight":"bold",
			"color":"#FFFFFF",
			"border":0,
			"background":"#89B5FF",
			"padding":"5px"
			
		}
	});
	$$(".imghover").each(function(img){
		img.addEvent('mouseenter',function(){
			var p = img.getParent();
			message_view.inject(p,"before");
		});
	});
	
	/*$('tw_com').addEvent('click',function(e){
		e.stop();
		var name = this.get('name');
		var lg = name.substring(0,2);
		var id = name.substring(3);
		var url = this.get('href');
		
		var jsreq = new Request.JSON({
			url : "http://www.jeromesadou.com/en/twLog/" + lg + "/" + id,
			onSuccess : function(){
				window.location = url;
			}
		}).get();
		
	});*/
	
	
});
