jQuery.noConflict();

// Put all your code in your document ready area

	jQuery(document).ready(function($){
	
	// Do jQuery stuff using $ this where the functions need to go   
	   
	$('.homepagebanner').cycle({ 
	fx:    'fade', 
	speed:  2500 
	});
	
	$('.footerlogos1').cycle({ 
	fx:    'fade', 
	speed:  2500 
	});
	
	$('.footerlogos2').cycle({ 
	fx:    'fade', 
	speed:  2500 
	});

	// scroll
	$('.scroll').vTicker({
	speed: 500,
	pause: 3000,
	showItems: 3,
	animation: 'fade',
	mousePause: false,
	height: 0,
	direction: 'up'
	});
	
	
	$("a#inline").fancybox({
		 autoscale: true,
		'hideOnContentClick': true
		
	});
	
	
	

        
	// register control DOB field
	$(".datepicker").datepicker();

/*$(function () {
    $(".dobTextBox").datepicker({
        changeMonth: true,
        changeYear: true,
        showOn: 'both',
        buttonImage: "/furniture/images/icons/calendar-select.png",
        buttonImageOnly: true
    });
    return false;
});*/

	
	
	
	   
});
		   	

