// JavaScript for all pages

function showAll() {
	//
	var hiddenItems = new Array();
	var offset = 1;
	$('.hide').each(function(){
		$(this).delay(offset*120).fadeTo(600, 1);				 
		offset++;
	});
}

$(document).ready(function() {
	//
	$('.search-toggle-btn').click(function() {
		$('#searchby').slideToggle(800);
	});
});

$(window).load(function() {
	//
	//$('#preloader').fadeOut(500);
	//showAll();
});
