$(function(){
	/*FIX PNG*/
	$('img[src$=.png]').ifixpng();
	
	/*JQUERY CORNER*/
	$('#recrutement input.text, #recrutement textarea.text, #recrutement select').corner("4px");
	
	/*CHAMPS DE FORMULAIRE*/
	$('input.text, textarea.text, select').bind('focus',function(){
		$(this).css('background-color','#505050')										   
	})
	$('input.text, textarea.text, select').bind('blur',function(){
		$(this).css('background-color','#3a3a3a')										   
	})
	$('input.submit').bind('mouseenter',function(){
		$(this).css('background-color','#505050')										   
	})
	$('input.submit').bind('mouseleave',function(){
		$(this).css('background-color','#3a3a3a')										   
	})
	
	$('div.reference img').bind('mouseenter',function(){
		$(this).fadeTo(200, 0.8);													
	});
	$('div.reference img').bind('mouseleave',function(){
		$(this).fadeTo(200, 1);													
	});
});
