jQuery.noConflict();

jQuery(document).ready(function(){
  
	// MAKE FLASH MESSAGES DO SOMETHING NEAT
	jQuery('.cancel').click(function(){ // fadeout flash messages on click   
		jQuery(this).parents('div:eq(0)').fadeOut('slow');
	return false;  
	});  
	jQuery('.flash_good').animate({opacity: 1.0}, 2000).fadeOut('slow');

});
