// Functions for jQuery

jQuery(document).ready(function($){

	$("#sidebar_content").find("a[href='"+location.pathname.substring(1)+"']").each(function(){
	$(this).addClass("current")});
	$("#results tr:nth-child(odd)").addClass("odd");
	$('.featured').makeacolumnlists({cols: 2, colWidth: 310, equalHeight: 'ul', startN: 1});
	$('.price').makeacolumnlists({cols: 2, colWidth: 252, equalHeight: 'ul', startN: 1});
	$('#help').toggle();
	$('#showHelp').text('Help').click(function(){
		$.ajax({
  			url: 'datasource/ncalchelp.htm',
			success: function(data) {
    				$('#help').html(data).toggle("slow");  }
});
		
	});
	
	$("#go").click(function(){
		$('#search').submit();
	});
	$.preLoadImages(
	[
	'images/splash_farm.jpg',
	'images/splash_flowers.jpg',
	'images/splash_labtech.jpg',
	'images/splash_wheat.jpg',
	'images/splash_cows.jpg',
	'images/splash_corn.jpg'
	],function(){
		//alert('Images Loaded! (This is for testing only)');
		$('.rotator').cycle ({
		fx: 'fade',
		speed: 500
	});
	});
	
});


