$(document).ready(function(){

	 $("img[@src$=png], div.dropShadow-tbn, div.dropShadow, #table_envoi").pngfix();

	
	
	// rollOver function
	$(".rollover").hover(
	function(){
		if($(this).attr("src").indexOf("-active") == -1) {
			var newSrc = $(this).attr("src").replace(".png","-active.png#hover");
			$(this).attr("src",newSrc);
		}
	},
	function(){
		if($(this).attr("src").indexOf("-active.png#hover") != -1) {
			var oldSrc = $(this).attr("src").replace("-active.png#hover",".png");
			$(this).attr("src",oldSrc);
		}
	}
	);
	
	
   	
   	/// AJAX FUNCTIONS ////////////////////////////////////////////////////////////////
   	
   	// abonnement ˆ la liste d'envoi
	$("#subscribe").submit(function() {
		var $a = $('#adresse').val();
		//loading...
		$("#adresse").val('un instant...');
			
		//subscribe the user
		$.post("inscription_artiste.php", { adresse:$a, artiste:$('#artiste').val()}, function(data) {
		  if (data == 'erreur' || data == '') {
			$("#adresse").val('erreur');	
		  } else {
			$("#adresse").val(data);
          }
        });
        
 		return false; 
	});
	
	$("#adresse").focus(function() {
		$("#adresse").val('');
	});

    
});