$(document).ready(function() {
    $("label.overlabel").overlabel();
	$("#module-meet-bell .module-content a, #module-office-tour .module-content a, #module-technology .module-content a").bigTarget({
		clickZone : 'div.module',
		hoverClass : 'over'
	});
	
	// Smile Gallery (Close-ups)
	$('.boxgrid.slideright').click(function(){
		$(".cover", this).stop().animate({left:'325px'},{queue:false,duration:250});
		$(this).addClass("clicked");

	});	
	$('.boxgrid.slideright').hover(function(){
		//$(".cover", this).stop();
		$(this).removeClass("clicked");
	}, function() {
		$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:200});
	});		
	
	// Smile Gallery (Portraits)
	$('.boxgrid-portrait.slideright').click(function(){
		$(".cover", this).stop().animate({left:'325px'},{queue:false,duration:250});
		$(this).addClass("clicked");

	});	
	$('.boxgrid-portrait.slideright').hover(function(){
		//$(".cover", this).stop();
		$(this).removeClass("clicked");
	}, function() {
		$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:200});
	});		
});




