jQuery.noConflict() 
	jQuery('#flash').hide();
	jQuery(document).ready(function(){
	jQuery(".columns").equalHeights();
 		jQuery('#flash').flash({swf:'http://geckograss.com.au/header.swf',height:200,width:800});
		jQuery('#flash').show();

	jQuery('#video').show();
 	jQuery('#video').flash({swf:'http://geckograss.com.au/applicator2.swf',height:336,width:448});

		jQuery("ul.sf-menu").supersubs({ 
			minWidth:    15,    // minimum width of sub-menus in em units 
			maxWidth:    20,   // maximum width of sub-menus in em units 
			extraWidth:  1     // extra width can ensure lines don't sometimes turn over 
                                           // due to slight rounding differences and font-family 
		});
		jQuery('ul.sf-menu').superfish({ 
			delay:       800,
			animation:   {opacity:'show',height:'show'},  
			speed:       'fast',                          
			autoArrows:  true,                           
			dropShadows: false                            
		});
	});

(function(jQuery) {
	jQuery.fn.equalHeights = function(minHeight, maxHeight) {
		tallest = (minHeight) ? minHeight : 0;
		this.each(function() {
			if(jQuery(this).height() > tallest) {
				tallest = jQuery(this).height();
			}
		});
		if((maxHeight) && tallest > maxHeight) tallest = maxHeight;
		return this.each(function() {
			jQuery(this).height(tallest).css("overflow","hidden");
		});
	}
})(jQuery);


