function init() {

	$.fx.on;
	
	var active = false;
	
	$("div.btn_container > div > img").hover(
		function () {
			$("div.btn_container > div").removeClass("btnActive");
			$(this).parent().addClass("btnActive");
			$('div.ovr_container').clearQueue();
			if(active == false) {
				$('div.ovr_container').animate({
					height: '275'
					}, 250,function() {$('div.ovr_container').css('height','275px');}
				);
				active = true;
			}
			$('div.ovr_container').html($('#' + this.id + 'content').html());
			
			
		},
		function () {
		}
	);

	$("#allContainer").hover(
		function () {
			
		},
		function () {
			$("div").removeClass("btnActive");
			$('div.ovr_container').clearQueue();
			$('div.ovr_container').animate({
				height: '0'
				}, 250, function() {$('div.ovr_container').css('height','0px');active = false;}
			);
		}
	);
	
}

window.onload = init;
