/*
jQuery(function(){
	jQuery('#box-container .box').mouseover(function(){
		jQuery(this).addClass('boxup')
		jQuery(this).find('.right-box-content').addClass('full-text')
	})

	jQuery('#box-container .box').mouseout(function(){
		jQuery(this).removeClass('boxup')
		jQuery(this).find('.right-box-content').removeClass('full-text')
	})

});
*/

jQuery(document).ready(function(){
	$('#search input#edit-submit').val("");
	$('.readmore a span').text('');

	$('#nice-menu-1 li ul li ul').remove();

	$(".box").mouseover(
	  function () {
		$(this).find('.box-center').stop().animate( { height:"160px" } , 500 );
	//	$(this).stop().animate({top:"-86px"}, 1000)
	  });

	$(".box").mouseout(
	  function () {
		$(this).find('.box-center').stop().animate( { height:"61px" } , 500 );
	//	$(this).stop().animate({top:"13px"}, 1000)
	  });
})


