jQuery(function() {
	

	jQuery(".imageBox").click(function(){
		$("#show").hide();
		$.get("http://hippies.se/wp-content/themes/hippies2011/getResults.php", { caseId : $(".formGet", this).val() }, function(data){
			$("#show").fadeIn(2000).html(data);
		});
	});
	jQuery(".textbox").hide();
	jQuery(".hovertextbox").hide();
	
	jQuery(".grid_1").hover(function(){
		jQuery(".textbox", this).show();
		jQuery(".hovertextbox", this).show();
	}, function(){
		jQuery(".textbox").hide();
		jQuery(".hovertextbox").hide();
	});
	var fp = jQuery(".pageBox:first-child").fadeIn(3000);
	var clicks = 0;
	
	
		jQuery("#leftButton").hide();
	
	
	
	
	jQuery("#rightButton").click(function(){
		
		if(jQuery(".pageBox").size()-1 > clicks){
			clicks++;
			jQuery(".grid_1").animate({"left" : "-=920px"}, "slow", 
			function(){
				if(clicks != 0){
					jQuery("#leftButton").show();
				}
				if(clicks == jQuery(".pageBox").size()-1){
					jQuery("#rightButton").hide();
				}
			});
		}
		
	});
	jQuery("#leftButton").click(function(){
		if(0 < clicks){
			jQuery(".grid_1").animate({"left" : "+=920px"}, "slow", 
			function(){
				if(clicks == 0){
					jQuery("#leftButton").hide();
					jQuery("#rightButton").show();
				}
			});
			clicks--;
		}
	});
});

