// JavaScript Document
$(document).ready(function(){

 $("a.inspire").click(function () {
      $("#inspire").show('slow') 
	  $("#develop").hide('slow')
	  $("#share").hide('slow')
    });
  $("a.develop").click(function () {
      $("#inspire").hide('slow')
	  $("#develop").show('slow')
	  $("#share").hide('slow')
    });
   $("a.share").click(function () {
      $("#inspire").hide('slow')
	  $("#develop").hide('slow')
	  $("#share").show('slow')
    });
 
 $("a.inspire_close").click(function () {
      $("#inspire").hide('slow')
	  $("#develop").hide('slow')
	  $("#share").hide('slow')
    }); 
 
 	// Expand and contract the menu
		$('.collapse ul').hide();
		
		if ($.browser.msie) {
   			$('.menControl').click(function(){
			$(this).next('ul').slideToggle('slow');
			return false;
										});
		} else  {
			$('.menControl').click(function(){
			$(this).parent().next('ul').slideToggle();
			return false;
			});
		}

		
 
 

	

});
