/*
 * Copyright (c) 2011 Umut Keskin.
 * Licensed under the GPL license.
 *
 * @version 1.0
 #poweredMat{ background:url(../images/powered.png) left bottom; height:17px; width:392px; position:relative; margin:0; padding:0; margin-top:10px}
#poweredMat a{ display:block; float:left; width:56px; height:17px; background:none }
 */
(function($) {
$.fn.GriRenkli=function(ayarlar){
var settings = jQuery.extend({
bgresmi: ''
   }, ayarlar);

$(this).hover(function(){
		var ps=$(this).offset();
		var divPos=$(this).parent().position().left;
		var leftPos=divPos-ps.left;
		$(this).hide().css({background : 'url('+settings.bgresmi+') '+leftPos+'px top'});
		$(this).fadeTo("normal",1);

	},function(){
			$(this).fadeTo("normal",0);
	});
}
 })(jQuery);
