/* $Id: genhit.js 749 2008-03-07 18:26:29Z bicou $ */

// Tests if element is a PNG image, and if so fixes it

$(function() {

	$('img[@src$=.png], img.alpha').ifixpng('/icons/blank.gif'); 
	$('a[@rel="external"]').each(function() { this.target = '_blank'; });
	
	$('.flat').focus(function() {
		$(this).addClass('flat_focus'); $('#'+this.id+'__help' ).addClass('help_focus');
	}).blur(function () {
		$(this).removeClass('flat_focus'); $( '#' + this.id + '__help' ).removeClass('help_focus');
	});

	$('table.list tbody').bind('mouseenter',function() { $(this).addClass('mouseover'); }).bind('mouseleave',function() { $(this).removeClass('mouseover'); });
	
	$('input#inscription_uri').keyup( function() {
		if( $(this).val().length > 1 )
		{
			$('#uri_availability_result').html('<img src="/silk/time.png" class="icon" alt="recherche" title="Recherche en cours..." />');
			$.post('uri-availability-check.php', { uri: $(this).val() }, function(data){
				$('#uri_availability_result').html(data);
			});
		}
		else
		{
			$('#uri_availability_result').empty();
		}
	});
	
	$('.f_form_element:first','fieldset').css({ border: 'none' });
	
	/*
	$('#admin-tabs').tabs({ selectedClass: 'current', click: function(a) {
		if( a.className.indexOf('admin-tabs-follow') >= 0 ) {
			top.location = $.data(a,'href');
			return false;
		}
    }});
	*/

	if( typeof $.editable != 'undefined' )
	{
		$('.admin-sites-editable').editable("/admin-sites-editable.php", {
			loadurl: "/admin-sites-editable.php",
			width: "100%", height: "100%",
			placeholder: "<img src=\"/silk/textfield_add.png\" class=\"alpha\">"
		});
		$('.admin-sites-editable-t').editable("/admin-sites-editable.php", {
			loadurl: "/admin-sites-editable.php",
			type: "textarea", submit: "Ok",
			width: "100%", height: "100%",
			placeholder: "<img src=\"/silk/textfield_add.png\" class=\"alpha\">"
		});
	}

	//$('#googlechat').html('<iframe src="http://www.google.com/talk/service/badge/Show?tk=z01q6amlqi6rivs3ksqsc7ia0hcfq9h6ibg27k7j555akhcvrak75q7pa9rqfr4h62j5p09056n95td8fabs7q4pi3vfc7dg7iq870mee43jmn7nfr6vi53aebaiol8263mqj1gjecckc36jhv31gphg879530g785tisidu894sneuh7fcc2khroq19a1d9dn4&amp;w=170&amp;h=60" frameborder="0" allowtransparency="true" width="170" height="60"></iframe>');
});


