/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var reg = [];
reg['contact_email'] = 'Email címed';
$(function(){
	$('#contact_email').bind('focus', function(){
		if($(this).val() === reg[$(this).attr('id')])
			$(this).val('');
	})
	$('#contact_email').bind('blur', function(){
		if($(this).val() === '')
			$(this).val(reg[$(this).attr('id')]);
	})
	$('a.mail-to-insert-href').attr('href','mailto:67developer@gmail.com');
	$('a.mail-to-insert').attr('href','mailto:67developer@gmail.com').text('67developer@gmail.com');
	$('span.mail-to-insert').text('67developer@gmail.com');
	$('#content a img').parent().each(function(){$(this).css('background','none');$(this).css('padding-right','0')})


});


