$(document).ready(function() {
	
	// BREADCRUMB
	var path = window.location.pathname;
		
	if(path.match('agricultural')) {
		$('p.breadcrumb span').html('<a href="http://www.cpbio.com/agricultural">Agricultural Use</a>');
	}
	if(path.match('professional')) {
		$('p.breadcrumb span').html('<a href="http://www.cpbio.com/professional">Professional T&O</a>');
	}
	if(path.match('technical')) {
		$('p.breadcrumb span').html('<a href="http://www.cpbio.com/technical">Technical</a>');
	}
	if(path.match('home')) {
		$('p.breadcrumb span').html('<a href="http://www.cpbio.com/home">Home &amp; Garden</a>');
	}
	/*
if(path.match('help-desk')) {
		$('#sidebar h3 span').html('Help Desk');
	}
	if(path.match('news-events')) {
		$('#sidebar h3 span').html('News &amp; Events');
	}
	if(path.match('about')) {
		$('#sidebar h3 span').html('About Our Practice');
	}
*/

	// SLIDER
	$('#slides').innerfade({
		speed: 1500,
		timeout: 4000,
		type: 'sequence'
	});
	$('#slidetext').innerfade({
		speed: 1500,
		timeout: 12000,
		type: 'sequence'
	});
	
	//DROPDOWN
	$('#products').hoverIntent(
		function() {
			$('.subnav').slideDown('fast');
		},
		function() {
			$('.subnav').slideUp('fast');
		}
	);
	
});
