var moonvals=new Array(10,115,250,375);

$(document).ready(function(){
	$(window).bind("load",function(){
		
		$('#hp_img_con, #hp_img_con2').imgCrossFade({aniDuration:800,aniInterval:5000});
		
		$('.thumbSec a').lightBox();
		
		$('#thenews').html("<p>Fetching posts please wait...</p>");
		$.post("php/process.php",{func: "getnews"},function(data){
			$('#thenews').html(data);				  
		});
		
		$('#homeblog').html("<p>Fetching posts please wait...</p>");
		$.post("php/process.php",{func: "gethomenews"},function(data){
			$('#homeblog').html(data);				  
		});
		
	});
	
	$('#baf_form').submit(function(){
		return false;
	});
	
	$('.inseason_img').each(function(i){
		$(this).css("backgroundImage","url(images/in_season/thumbs/"+i+".jpg)");							 
	});
	
	$('#iamthemoon').css("left",moonvals[pgesel]+"px");
	
	$('.tb_directions').focus(function(){
		$(this).val("");								   
	});
	
	$('.baf_formtxt').focus(function(){
		$(this).val("");								   
	});
	
});
