// top dropdown code
equalHeight(  $('#dropnav_links ul')  );
finalheight = $('#dropnav').height() - 10;

$(".roller_activate").mouseenter(function(){
	$('#dropnav').stop().animate({ top: "0px", easing:"easeInOutQuart"},250);
	$('.nav_collections').addClass('nav_collections_active');
});

$(".roller_deactivate").mouseleave(function(){
	$('#dropnav').stop().animate({ top: "-"+finalheight+"px", easing:"easeInOutQuart"},250);
	$('.nav_collections').removeClass('nav_collections_active');
});

$(".roller_deactivate_misc").mouseenter(function(){
	$('#dropnav').stop().animate({ top: "-"+finalheight+"px", easing:"easeInOutQuart"},250);
	$('.nav_collections').removeClass('nav_collections_active');
});

$(".outhit").mouseenter(function(){
	$('#dropnav').stop().animate({ top: "-"+finalheight+"px", easing:"easeInOutQuart"},250);
	$('.nav_collections').removeClass('nav_collections_active');
});

$('#dropnav').stop().animate({ top: "-"+finalheight+"px", easing:"easeInOutQuart"},0);
