$(function(){
	
/*
	Main Navigation
*/
    $("ul#menu li").hover(function(){
    
        $(this).addClass("hover");
        $('div:first',this).css('visibility', 'visible');
    
    }, function(){
    
        $(this).removeClass("hover");
        $('div:first',this).css('visibility', 'hidden');
    
    });

/*
	Box Slides for Callouts
*/
	
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute  
	//Vertical Sliding  
	  $('.slide-box').hover(function(){  
	        $(".slide", this).stop().animate({bottom:'0'},{queue:false,duration:600});  
	     }, function() {  
	         $(".slide", this).stop().animate({bottom:'-120px'},{queue:false,duration:600});  
	     });
	
/*
	Lightbox
*/	


});

$.noConflict();
  jQuery(document).ready(function($) {
    // Code that uses jQuery's $ can follow here.
			$('#our-offices a').lightBox({fixedNavigation:true});
});


















