// Contact us panel

		// When the DOM is ready, initialize the scripts.
		jQuery(function( $ ){
 
			// Get a reference to the container.
			var contactus_panel = $( "#contactus_panel" );
  
			// Bind the link to toggle the slide.
			$( "#open_contactus" ).click(
				function( event ){
					// Prevent the default event.
					event.preventDefault();
 
					// Toggle the slide based on its current
					// visibility.
					if (contactus_panel.is( ":visible" )){

						// Hide - slide up.
						contactus_panel.slideUp( 1000 );
 
					} else {

						// Show - slide down.
						contactus_panel.slideDown( 1000 );
					}
				}
			);
 
		});


// Menu

		// When the DOM is ready, initialize the scripts.
		jQuery(function( $ ){
 
			// Get a reference to the container.
			var menu_panel = $( "#menu_panel" );
			
			var flashSpacer = $( "#flashSpacer" );
  
			// Bind the link to toggle the slide.
			$( ".menulink" ).click (
				function( event ){
					// Prevent the default event.
					event.preventDefault();
 
					// Toggle the slide based on its current
					// visibility.
					if (menu_panel.is( ":visible" )){

						// Hide - slide up.
						menu_panel.slideUp( 500 );
						flashSpacer.show(1000);
		
					} else {
						
						// Slow - slide down.
						menu_panel.slideDown( 500 );
						flashSpacer.hide(1000);
 
					}
				}
			);
			
						  $(".menulink").mouseover(function ()
			  {
				//$(this).style = 'background-position: right';
				$(this).style = 'background-image: url(images/what.png)';
			  });
			  
			  
 
		});
		



