	jQuery(document).ready(function() {
		jQuery(".quote_holder").flip({
			direction:'tb',
			color:'#025d8c'
		})
	
	// Add down arrow only to menu items with submenus
    jQuery(".nav_top ul > li:has('ul')").each(function() {
        jQuery(this).find("a:first").append("<span class='has_ul'>&nbsp;&nbsp;&nbsp;&gt;&gt;</span>");
    });	
		
	});
