$(document).ready(
	function()
	{
		$("#testimonial_list").newsTicker();
	}
);

$(function() {
	$(".newsticker-jcarousellite").jCarouselLite({
		vertical: true,
		hoverPause:true,
		visible: 3,
		auto:500,
		speed:2000
	});
});

$(document).ready(function(){
    $('.enquiry_button').hover(
        function(){
            $(this).attr({ src : '/images/submit_btn_roll.png'});
        },
        function(){ 
            $(this).attr({ src : '/images/submit_btn.png'});       
	}
    );
});

