$(document).ready(function(){
	
	$('#home-banners').cycle({
		fx:     'fade',
		timeout: 8000
	});
	
	$("#search-btn").click(function () {
		$("#SearchForm").slideToggle(function () {
			$('#SearchForm input.Textbox').focus();
		});
	});
	
	$('div.Breadcrumb ul:first').show();
	
	$('span.expand').click(function() {
		$(this).toggleClass('active');
		$(this).parent().parent().parent().children('div.details').slideToggle();
	});
	
});
