$(document).ready(function(){

	$('.scroll').jScrollPane({
		verticalDragMinHeight: 20,
		verticalDragMaxHeight: 20
	});
	
	$(".modal-contact").colorbox({width:"457", inline:true, href:"#contact"});
	
	$(".modal-people").colorbox({width:"460", inline:true, href:"#people"});
	
	$("li.services").mouseover(function() {
		$(this).parent().addClass("services-hover");
	}).mouseout(function(){
    	$(this).parent().removeClass("services-hover"); 
    });
	
	$("li.about").mouseover(function() {
		$(this).parent().addClass("about-hover");
	}).mouseout(function(){
    	$(this).parent().removeClass("about-hover"); 
    });
    
	$("li.happenings").mouseover(function() {
		$(this).parent().addClass("happenings-hover");
	}).mouseout(function(){
    	$(this).parent().removeClass("happenings-hover"); 
    });
    
	$("li.contact").mouseover(function() {
		$(this).parent().addClass("contact-hover");
	}).mouseout(function(){
    	$(this).parent().removeClass("contact-hover"); 
    });
});
