// Title: Enviroganics - javascript// Author: Kalon Edser, http://www.kalonedser.com/// Updated: 10 Nov 2010jQuery(document).ready(function() {		$('body').addClass('js');		// global	// var animationSpeed = 2500;		$('#slideshow').cycle({		timeout: 5000,		speed:  2500	});		$('.news-flash').cycle({		fx: 'scrollLeft',		timeout: 7500,		speed:  2500,		pause: 1	});		// subnav drop down	$('.nav li').hover(	  function () {		$(this).addClass("over");	  },	  function () {		$(this).removeClass("over");	  }	);		// fix png images with alpha channels	// $.ifixpng('../img/pixel.gif');	// $('.png').ifixpng();		// open new window for external links	$('A[rel="external"]').click( function() {		window.open( $(this).attr('href') );		return false;	});});
