//$(document).ready(function(){
//$(".latest_img").fadeTo("slow", 0.3);
//$("#div1").fadeTo("fast", 0);
//$(".latest_img").hover(function(){
//$(this).fadeTo("slow", 1.0);
//},function(){
//$(this).fadeTo("slow", 0.3);
//});
//$("#button").hover(function(){
//$("#div1").fadeTo("slow", 1.0);
//},function(){
//$("#div1").fadeTo("fast", 0);
//});
//});

$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#branding').hide();
   $('#corpid').hide();
    $('#marketing').hide();
 // shows the slickbox on clicking the noted link
 // $('#btnBE').click(function() {
 // $('#branding').show('slow');
// return false;
 // });
 // hides the slickbox on clicking the noted link
  //$('#btnDO').click(function() {
 //$('#corpid').hide('fast');
 //return false;
  //});
 // toggles the slickbox on clicking the noted link
  $('#btnSAY').click(function() {
 $('#marketing').toggle(325);
 $('#corpid').hide(300);
 $('#branding').hide(300);
 return false;
  });
  $('#btnDO').click(function() {
 $('#corpid').toggle(325);
 $('#marketing').hide(300);
 $('#branding').hide(300);
 return false;
  });
  $('#btnBE').click(function() {
 $('#branding').toggle(325);
 $('#corpid').hide(300);
 $('#marketing').hide(300);
 return false;
  });
});