﻿$(document).ready(function() {
        /** 'sliding doors' **/
        $('#slidingPanels .threeCol').hover(function(){
            var distance = $(this).outerWidth();
            $(this).find('.slider').animate({ top : '-' + distance },{queue:false,duration:400});
        }, function(){
            $(this).find('.slider').animate({ top : '0px' },{queue:false,duration:400});
        });  
        
        /** js text replacement **/
            Cufon.replace
        ('.home_right a span.heading')
        ('.columnBoxInner h2', { textShadow: '#fff 1px 1px' })
        ('.columnBoxInner h3')
        ('.columnBoxInner h4')

    
        $("div.scrollable").scrollable({ 
            vertical:true,  
            size: 2
        });     
        

		       
});
