$(function(){
	
	$( '.linktous_holder .generator input' )
		.click ( 
			function ()
			{
				var value = $( this ) .attr ( 'value' );
				var html_value = '<a href="http://xtgem.com/ref/"><img src="http://xtgem.com/images/banners/'+ value +'.gif" alt="XtGem.com - Free WAPsite creator" /></a>';
				$( '.content_holder .linktous_holder .banners' ) .slideUp ( 'fast', 
					function ()
					{
						$( '.content_holder .linktous_holder .banners img' ) .each (
							function ()
							{
								if ( $( this ) .attr ( 'alt' ) != value )
								{
									$( this ) .hide ();	
								}
								else
								{
									$( this ) .show ();	
								}
							}); 
						$( '.content_holder .linktous_holder .banners input' ) 
							.attr ( 'value', html_value )
							.click (
								function (e)
								{
									$( this ) .select ();
								})
							.blur ( 
								function ()
								{
									this .value = html_value;
								});
						$( '.content_holder .linktous_holder .banners' ) .slideDown ( 'fast' );
					} );
			});
	
});
