// JavaScript Document
$(document).ready(function() {
	$(".homebox").hover(function(){
		$(this).children(".view").stop().animate({ bottom: "200" }, "slow"),
		$(this).children("h2").stop().animate({ top: "44" }, "slow"),
		$(this).children().css({ "color" : "#f13d0d" });
		$(this).children().children().css({ "color" : "#f13d0d" });
	}, function(){
		$(this).children(".view").stop().animate({ bottom: "276" }, "slow"),
		$(this).children("h2").stop().animate({ top: "10" }, "slow"),
		$(this).children().css({ "color" : "#f1870d" });
		$(this).children().children().css({ "color" : "#f1870d" });
	});	  
	
	$(".homebox.paint").click(function(){
		window.location = "/Paint/";
	});
	
	$(".homebox.panel").click(function(){
		window.location = "/Panel/";
	});
});