jQuery(document).ready(function() {

 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  /*jQuery('#details1').fadeOut();
  */
 // shows and hides and toggles the slickbox on click  
  /*jQuery('#multimedia1').click(function() {
    jQuery('#details1').fadeIn('slow');
    return false;
  });
  jQuery('#events1').click(function() {
    jQuery('#details1').fadeOut('fast');
		jQuery('#details3').css("margin-top","50");

    return false;
  });*/
  
  jQuery('#details1').fadeOut('fast');
  jQuery('#details2').fadeOut('fast');
  jQuery('#details3').fadeOut('fast');
  jQuery('#details4').fadeOut('fast');

		$("#details1").fadeIn('slow');
/*		$("#events1").css("text-shadow","0 1px 3px #000000");*/

		$("#multimedia1").css("color","#6c6c6c");
		$("#conference1").css("color","#6c6c6c");
		$("#exhibition1").css("color","#6c6c6c");
  
  
  
  $("#events1").hover(function() {
/*  jQuery('.textChange').replaceWith('<p>From concept to completion, we&#146;ve got you covered.</p>');*/
		$("#details1").fadeIn('slow');
		$("#multimedia1").css("color","#6c6c6c");
		$("#conference1").css("color","#6c6c6c");
		$("#exhibition1").css("color","#6c6c6c");
		$("#events1").css("color","#08c515");

}, function() {
     $("#details1").fadeOut('fast');
	 	 	$("#multimedia1").css("color","#fd4fa2");
			$("#conference1").css("color","#fd4fa2");
			$("#exhibition1").css("color","#08c515");
});


$("#multimedia1").hover(function() {
     $("#details3").fadeIn('slow');
	 	  $("#details1").fadeOut('fast');

	 	$("#events1").css("color","#6c6c6c");
		$("#conference1").css("color","#6c6c6c");
		$("#exhibition1").css("color","#6c6c6c");
		$("#multimedia1").css("color","#fd4fa2");

}, function() {
     $("#details3").fadeOut('fast');
	 	$("#events1").css("color","#08c515");
		$("#conference1").css("color","#fd4fa2");
		$("#exhibition1").css("color","#08c515");
});

  $("#conference1").hover(function() {
    $("#details1").fadeOut('fast');
	
	 $("#details2").fadeIn('slow');
	 	$("#events1").css("color","#6c6c6c");
		$("#multimedia1").css("color","#6c6c6c");
		$("#exhibition1").css("color","#6c6c6c");
		$("#conference1").css("color","#fd4fa2");

	 
}, function() {
     $("#details2").fadeOut('fast');

	 	$("#events1").css("color","#08c515");
		$("#multimedia1").css("color","#fd4fa2"); /*ff0d80pink*/
		$("#exhibition1").css("color","#08c515");
});

  $("#exhibition1").hover(function() {
  	  $("#details1").fadeOut('fast');

     $("#details4").fadeIn('slow');
	 	$("#events1").css("color","#6c6c6c");
		$("#multimedia1").css("color","#6c6c6c");
		$("#conference1").css("color","#6c6c6c");
	 	$("#exhibition1").css("color","#08c515");

}, function() {
     $("#details4").fadeOut('fast');

		$("#events1").css("color","#08c515");
		$("#multimedia1").css("color","#fd4fa2");
		$("#conference1").css("color","#fd4fa2");
});
    
    });
  /*
  jQuery('#multimedia1').click(function() {
    jQuery('#details3').toggle(100);

    return false;
  });
  
  
  jQuery('#events1').click(function() {
    jQuery('#details1').toggle(100);

    return false;
  });


  
  
  
  
 // slides down, up, and toggle the slickbox on click    
  jQuery('#slick-down').click(function() {
    jQuery('#details1').slideDown('slow');
    return false;
  });
  jQuery('#slick-up').click(function() {
    jQuery('#details1').slideUp('fast');
    return false;
  });
  jQuery('#slick-slidetoggle').click(function() {
    jQuery('#details1').slideToggle(400);
    return false;
  });*/

