var Init = 
{
	run: function(){	
	
		$(document).pngFix();
	
		$('a[rel="external"]').click(function(){
			window.open($(this).attr('href'));
			return false;
		});
		
		$('#footer_menu li > a').click(function(){
			$(this).closest('ul').find('li').removeClass('active');
			$(this).closest('li').addClass('active');			
			return false;
		});
		
		$('form label').each(function(){
			var text = $(this).text();
			var elements = $(this).next('div').find('input');
			elements.val(text);
			elements.focus(function(){
				$(this).val('');
			});
			$(this).hide();
		});
	}
}
$(Init.run);
