$(function (){
	$('#pogas a').click(function (){
		$('#forma2').html($($(this).attr('href')).clone(true));
		$('#type').val($(this).attr('href').substr(1));
		return false;
	});
	
	$('#codegenerators form').submit(function (){
		$('#codegenerators .giftbox').html('<img src="/images/qr-code.png?'+$(this).serialize()+'" alt="" />');
		return false;
	});
	
	$('#codegenerators input.text, #forma input.text').focus(function (){
		$(this).attr('alt', $(this).val()).removeClass('forma2');
		if($(this).attr('name') == 'url') {
			$(this).val('http://');
		} else {
			$(this).val('');
		}
	}).blur(function (){
		if($(this).val() == '') {
			$(this).val($(this).attr('alt')).addClass('forma2');
		}
	});
	
	$('a[rel=external]').attr('target', '_blank');
});