/***********************************************************
/         DEVELOPMENT BY RYAN MOELLER @ Red Olive Design   *
/             http://www.redolivedesign.com                *
***********************************************************/

$(document).ready(function() {

$('.top').hover(function() {
   	var myDrop = $(this).children('.drop').eq(0);
	$(myDrop).show(125);
}, function() {
	var myDrop = $(this).children('.drop').eq(0);
	$(myDrop).stop(true, true).hide(0);
	$('.two').css({'display' : 'none'}); /*fixes safari bug with flyout artifacts*/
});

/*$('.one').hover(function() {
	var myFly = $(this).children('.two');
	$(myFly).show(125);
}, function() {
	var myFly = $(this).children('.two');
	$(myFly).stop(true, true).hide(0);
});
*/

});
