jQuery.noConflict();
jQuery(document).ready(function($) {
    
	$("#flashMessage").show("normal", function() {
        setTimeout(function() {
			$("#flashMessage").fadeOut(500);
		}, 4000);
		
	});
	
});

