jQuery(document).ready(function() {
//	jQuery("#righttopbtn").append("<div class='btnslide'></div>");
//	jQuery("#rightbtmbtn").append("<div class='btnslide'></div>");
	
	jQuery("#righttopbtn").hover(
		function(){
			jQuery(".btnslide").stop(false, true).slideDown(200);
		},
		function(){
			jQuery(".btnslide").stop(false, true).slideUp(200);
		}
	);
	
	/*
	var parents = jQuery(".btnslide");
	var config = {
		sensitivity : 7,
		interval : 100,
		over : openMenu,
		timeout : 200,
		out : closeMenu
	};
	jQuery(parents).each(function() {
		jQuery(this).hoverIntent(config);
	});

});
function openMenu() {
	p = jQuery(this);
	sub = p.children("ul:first");
	p.addClass('hover');
	jQuery(sub).stop(false, true).slideDown(200);
}
function closeMenu() {
	var p = jQuery(this);
	sub = jQuery(this).children("ul:first");
	jQuery(sub).stop(false, true).slideUp(200,function () {
		p.removeClass('hover');
	});
	
	*/
});

