jQuery('document').ready(function(){
	
	jQuery('#social-newsletter label').each(function(){
		jQuery('#'+jQuery(this).attr('for')).attr('value', jQuery(this).text());
		jQuery(this).css('display', 'none');
		jQuery('#'+jQuery(this).attr('for')).keydown(function(){
			if(jQuery(this).attr('value') == jQuery('label[for='+this.id+']').text()) 
				jQuery(this).attr('value', '')
		});
		jQuery('#'+jQuery(this).attr('for')).blur(function(){
			if(jQuery(this).attr('value') == '') 
				jQuery(this).attr('value', jQuery('label[for='+this.id+']').text())
		});
	});
	
	jQuery(".wpcf7-form").each(function(){
		jQuery(this).attr('action', '?lang='+jQuery('html').attr('lang').substr(0, 2));
	});
	
	jQuery("#fb-photo-feed").cycle();
	
	jQuery("#fb-photo-feed img").each(function(){
		jQuery(this).css('position', 'relative');
		jQuery(this).css('top', -(jQuery(this).attr("data-height")/2)+90);
	});
});
