$(function () { 
			
	// Form select styling
	$("select.styled").select_skin(); 
	
	// Modal boxes - to all links with rel="facebox"
	 
	
	// CSS tweaks  
	$('form input[type=file]').addClass('file');
	
	// Check / uncheck all checkboxes
	$('.check_all').click(function() {
		$(this).parents('form').find('input:checkbox').attr('checked', $(this).is(':checked'));   
	}); 
	
 
		
	$('.message .close').click(function() {
		$(this).parent().fadeOut('slow', function() { $(this).remove(); });
	}); 
	 
	
	// Block search
	$('.block .block_head form .text').bind('click', function() { $(this).attr('value', ''); });
 
 
	
		
});
