function showAction() {
	
		var cont = document.getElementById( 'notice' );
		
		// If the container doesn't yet exist, we need to create it
		if ( cont ) {

				var notice = 	'<div class="notice">'+$( '.notice' ).html()+'<\/div>';
			  
				$( notice ).purr(
					{
						usingTransparentPNG: true,
            fadeInSpeed:500,
            removeTimer:timer				
					}
				);
				
				return false;
		}
	}
	
	function showAction2() {

		var cont = document.getElementById( 'notice2' );
		
		// If the container doesn't yet exist, we need to create it
		if ( cont ) {

				var notice = 	'<div class="notice2">'+$( '.notice2' ).html()+'<\/div>';
			  
				$( notice ).purr(
					{
						usingTransparentPNG: true,
						fadeInSpeed:500,
            removeTimer:timer	
					}
				);
				
				return false;
			}		
		}  		

$( document ).ready( function ()	{
				
				//$( '.show-example' ).click( function () 
					//{
			
						//var notice = 	'<div class="notice">'+$( '.notice' ).html()+'<\/div>';
	
						
							  
						//$( notice ).purr(
							//{
								//usingTransparentPNG: true,
								//removeTimer:2000
							//}
						//);
						
						//return false;
					//}
				//);
				
				//$( '.show-sticky' ).click( function () 
					//{
						//var notice = '<div class="notice">'
								  //+ '<div class="notice-body">' 
									  //+ '<img src="./purr-example/info.png" alt="" \/>'
									  //+ '<h3>"Sticky" Purr Example<\/h3>'
									  //+ '<p>This a "sticky" Purr. It will not fade out on its own. You must close it manually.<\/p>'
								  //+ '<\/div>'
								  //+ '<div class="notice-bottom">'
								  //+ '<\/div>'
							  //+ '<\/div>';
							  
						//$( notice ).purr(
							//{
								//usingTransparentPNG: true,
								//isSticky: true
							//}
						//);
						
						//return false;
					//}
				//);
				
				
			setTimeout( "showAction();", 1500);	
			setTimeout( "showAction2();", 3000);	
      		
			}
		);

