$(function() {

	// Animate the flashMessage 
	$('.submit').click(function(){		
		
		$('#flashMessage').fadeOut('slow');
		$('#flashMessage').fadeIn(2000);					
		
	});	
	
	$('#flash_show_detail').click(function() {
		$('#flash_message_detail').slideToggle();
	});
	
	// Element aus einer Tabellen-Liste entfernen 
	$('[id^=delList_]').click(function() {
		if (confirm_delete()) return true;
		else return false;
			
	});	
	
	// Start Block effect
	<!--
	$(".aw_block .image_block img").hover(
		function() {
			$(this).stop().animate({
				opacity: 0.5,
				"margin-top": "5"
			}, 
			800
			);
		},
		function() {
			$(this).stop().animate({
				opacity: 1,
				"margin-top": "-5"
			}, 
			500
			);
		}
	);	
	
	
	//Check und check
	$('#checkAllAuto').click(
	   function()
	   {
	      $("INPUT[type='checkbox']").attr('checked', $('#checkAllAuto').is(':checked'));   
	   }
	);	

	//-->
});


