/*
This sheet of Javascript effect is to write by clashdesign and cannot be sold.
Read our conditions of use with a creative licence commons
*/
jQuery.noConflict();
//The 1st line is most important, 
//if you do not hold with step to have conflict between Jquery and of another library to remove it not.
jQuery(document).ready(function() {
		jQuery("#main .post").animate({opacity: 'show'}, 2000);
		jQuery("#blognav,#blogextra").slideDown(2000)
		.find("h3").hide().end().find("h2").click(function(){
		var answer = jQuery(this).next();
			if (answer.is(':visible')){
			answer.toggle(400);//animate({opacity: 'toggle'}, 600, "easein");
				}else{answer.animate({opacity: 'show'}, 600);
			}
		});
		jQuery(".message").Highlight(5000, '#FFD700');
		jQuery(".error").Highlight(5000, '#FF0000');
		jQuery(".email").Highlight(5000, '#FFD700');
		jQuery("#top .txtintro").animate({opacity: 0.5}, 600);
	/*var me = jQuery(this);
	jQuery('<div class="resizehandle"></div>');
	var h = me.height();
	var y = e.clientY;
	var moveHandler = function(e) {
		me.height(Math.max(20, e.clientY + h - y));
	};
	var upHandler = function(e) {
	jQuery('html')
	.unbind('mousemove',moveHandler)
	.unbind('mouseup',upHandler);
	};
	jQuery('html').bind('mousemove', moveHandler)
	.bind('mouseup', upHandler);*/
	});
