if( typeof($) != 'undefined' )
{
	$(document).ready(function(){

		
		jQuery.fn.slideFadeToggle = function(speed, easing, callback) {
			return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);
		};

      //resizeble hover effect for boxes at index page
       var initHeight = $('#resizebleTextarea').height();
       $('#resizebleTextarea').hover(function() {
         $(this).animate({height: $('> div', this).height() + 30}, 400);
       }, function() {
         $(this).animate({height: initHeight}, 400);
       });
       /////////////////////////////////////
       //resizeble hover effect for boxes at index page
       var initHeight = $('#resizebleTextarea2').height();
       $('#resizebleTextarea2').hover(function() {
         $(this).animate({height: $('> div', this).height() + 30}, 400);
       }, function() {
         $(this).animate({height: initHeight}, 400);
       });


	});
}


