﻿$(document).ready(function(){	
     
    //Caption Sliding (Partially Hidden to Visible)
    $('.carousel_boxgrid').hover(function(){
        $(".carousel_boxcaption", this).stop().animate({top:'-5px'},{queue:false,duration:160});
		$(".carousel_boxcaption h1", this).stop().animate({padding:'15px 0 9px 7px'},{queue:false,duration:160});
    }, function() {
        $(".carousel_boxcaption", this).stop().animate({top:'110px'},{queue:false,duration:160});
		$(".carousel_boxcaption h1", this).stop().animate({padding:'10px 0 12px 7px'},{queue:false,duration:160});
    });
	
	$('.subpage_boxgrid').hover(function(){
        $(".subpage_boxcaption", this).stop().animate({top:'-5px'},{queue:false,duration:160});
		$(".subpage_boxcaption h1", this).stop().animate({padding:'15px 0 9px 7px'},{queue:false,duration:160});
    }, function() {
        $(".subpage_boxcaption", this).stop().animate({top:'110px'},{queue:false,duration:160});
		$(".subpage_boxcaption h1", this).stop().animate({padding:'10px 0 12px 7px'},{queue:false,duration:160});
    });
	
	$('.subpage2_boxgrid').hover(function(){
        $(".subpage2_boxcaption", this).stop().animate({top:'-5px'},{queue:false,duration:160});
		$(".subpage2_boxcaption h1", this).stop().animate({padding:'15px 0 9px 7px'},{queue:false,duration:160});
    }, function() {
        $(".subpage2_boxcaption", this).stop().animate({top:'110px'},{queue:false,duration:160});
		$(".subpage2_boxcaption h1", this).stop().animate({padding:'10px 0 12px 7px'},{queue:false,duration:160});
    });
        
    // initialize scrollable 
    $("div.carousel_scrollable3").scrollable({
		size: 3,
		speed: 600,
		clickable: false
	});	
    
});

