/* utils */
$(function() {
	$('.crumbs').children(':last-child').addClass('last');
	$('.photo').children(':last-child').addClass('last');
	$('.photo').children(':first-child').addClass('first');
	$('.slides').cycle({
		fx:			'fade',
		random:		1,
		speed:		1000, 
		pause:		1,
		cleartype: false,
		timeout: 7000
	});
	$('.logos').cycle({
		fx:			'fade',
		random:		1,
		speed:		1000, 
		pause:		0,
		timeout: 6500
	});
	
	$('#SearchForm').submit(function() {
		$('#SearchForm').attr('action', $('#SearchForm').attr('action') + '/' + $('#SearchQuery').val());
		return true;
	});
	$('#SearchForm input').defaultValue();
	

});
