//$(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)
  $('#imgWrapper').animate({opacity: 0, left: '-=50px'}, 0);
  $('#imgWrapper').animate({opacity: 1, left: '+=50px'}, 500);
 // 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
	//$('#imgWrapper').animate({opacity: "0.1", left: "+=500"}, 1200;
});
