

/*expand div upwards

$(function() {
	$("#info_box").hover(function(){
    	$("#info_box").css('height','200px');
	}, function(){
    	$("#info_box").css('height','150px');
	});
});*/

/*expand div upwards*/
$(document).ready(function() {  //This

	$('#bttn').hover(function(){
    	$(this).animate({"height":"21.5em"}, 1000);
}, function() {
    $(this).animate({"height":"6.3em"}, 1000);
});
	
	$('#nbttn').hover(function(){
    	$(this).animate({"height":"10em"}, 1000);
}, function() {
    $(this).animate({"height":"2.5em"}, 1000);
});
	
	}); //And This


/*$('#hfont1').hover(function() {
    $(this).animate({"color":"#efbe5c","font-size":"52pt"}, 1000);
}, function() {
    $(this).animate({"color":"#e8a010","font-size":"48pt"}, 1000);
});*/

/*
$(function() {
	$(".bttn").hover(function(){
    	$(".bttn").css('height','15em').animate({},"slow");
	}, function(){
    	$(".bttn").css('height','6.3em').animate({},"slow");
	});
});

$(function() {
	$(".nbttn").hover(function(){
    	$(".nbttn").css('height','10em').animate({},"slow");
	}, function(){
    	$(".nbttn").css('height','2.5em').animate({},"slow");
	});
});
*/
/*

$(function() {
    $("#box").hover(function() {
        $("#box").animate({'height': '70px', 'top': "-20px"});
    }, function() {
        $("#box").animate({'height': '50px', 'top': "0px"});
    });
});


$(document).ready(function() {
 
	//ACCORDION BUTTON ACTION	
	$('p.bttn').click(function() {
		$('p.cntnt').slideUp('normal');	
		$(this).next().slideDown('normal');
	});
 
	//HIDE THE DIVS ON PAGE LOAD	
	$("p.cntnt").hide();
 
});*/
    



