jQuery(document).ready(function() {
	/*jQuery("form + div").css({'border' : 'none' , 'display' : 'none' }).remove();*/
	jQuery("#sectionex_wrapper + div").remove();
	
	jQuery(".submit, .reset, #submit_bt, #reset_bt").hover(
	function () {
    jQuery(this).css({'color' : 'black'}).animate({'margin-top' : '3px'})
	},
	function () {
    jQuery(this).css({'color' : 'white'}).animate({'margin-top' : '0px'});
	}	
 );
 	jQuery('body').hide();
 	jQuery('body').fadeIn(1000);
	
	

	<!--удаление ненужного тэга p  в веб-форме-->
	jQuery('#ckformcontainer p:first').remove();


jQuery("ul#menu span.description").hover(
	function () {
    jQuery(this).animate({'background-color' : 'black'},1000)
	},
	function () {
    jQuery(this).animate({'background-color' : '#DB1414'}, 1000);
	}	
 );
 

});

<!--Верхнее меню-->
 jQuery(function() {
            jQuery('#menu > li').hover(
                function () {
                    var jQuerythis = jQuery(this);
                    jQuery('a',jQuerythis).stop(true,true).animate({
                            'bottom':'-35px'
                        }, 300);
                },
                function () {
                    var jQuerythis = jQuery(this);
                    jQuery('a',jQuerythis).stop(true,true).animate({
                            'bottom':'-95px'
                        }, 300);
                }
            );
        });
		
<!--Меняющиеся текстовые блоки-->
jQuery(document).ready(function()  {

jQuery.fn.cycle.defaults.timeout = 6000;

  jQuery(function() {

jQuery('pre code').each(function() {

eval(jQuery(this).text());

});

});
});
