/*

Developer: Colin Stewart - crazy_foreigner[at]hotmail[dot]com
Development Date: 14/03/2011
Client: www.islanddogsbar.com

The contents of this file may not be used or edited
on or for any website or purpose without strict permission
from both the developer and client mentioned above.

*/

$(document).ready(function() {
	$("#btn_drink").css("cursor", "pointer");
	$("#btn_food").css("cursor", "pointer");
	$("#btn_stage").css("cursor", "pointer");
	$("#btn_events").css("cursor", "pointer");
});
$("#btn_drink").click(function () {
	$("#btn_drink").css("background", "url('/images/btn_drink_over.jpg')");

	$("#btn_food").css("background", "url('/images/btn_food.jpg')");

	$("#btn_stage").css("background", "url('/images/btn_stage.jpg')");

	$("#btn_events").css("background", "url('/images/btn_events.jpg')");

	$("#info").animate({
		bottom: "0px"
	}, {queue:false, duration:500, easing: 'easeInCubic'});
});
$("#btn_food").click(function () {

	$("#btn_drink").css("background", "url('/images/btn_drink.jpg')");

	$("#btn_food").css("background", "url('/images/btn_food_over.jpg')");

	$("#btn_stage").css("background", "url('/images/btn_stage.jpg')");

	$("#btn_events").css("background", "url('/images/btn_events.jpg')");

	$("#info").animate({
		bottom: "160px"
	}, {queue:false, duration:500, easing: 'easeInCubic'});
});

$("#btn_stage").click(function () {
	$("#btn_drink").css("background", "url('/images/btn_drink.jpg')");

	$("#btn_food").css("background", "url('/images/btn_food.jpg')");

	$("#btn_stage").css("background", "url('/images/btn_stage_over.jpg')");

	$("#btn_events").css("background", "url('/images/btn_events.jpg')");

	$("#info").animate({
		bottom: "320px"
	}, {queue:false, duration:500, easing: 'easeInCubic'});
});

$("#btn_events").click(function () {
	$("#btn_drink").css("background", "url('/images/btn_drink.jpg')");

	$("#btn_food").css("background", "url('/images/btn_food.jpg')");

	$("#btn_stage").css("background", "url('/images/btn_stage.jpg')");

	$("#btn_events").css("background", "url('/images/btn_events_over.jpg')");

	$("#info").animate({
		bottom: "480px"
	}, {queue:false, duration:500, easing: 'easeInCubic'});
});

