/*
	var lastItem = null;
	function opensubmenu(item)
	{
		if (lastItem != null)
		{
			lastItem.style.display = 'none';
		}
		lastItem = document.getElementById("opensubmenu"+item);
		if (lastItem != null)
		{
			lastItem.style.display = 'inline';
		}
	}
*/

$(document).ready(function() {

	$("ul#topnav li").hover(function() { //Hover over event on list item
		$(this).css({ 'background' : '#EE8015 url(topnav_active.gif) repeat-x'}); //Add background color and image on hovered list item
		$(this).find("span").show(); //Show the subnav
	} , function() { //on hover out...
		$(this).css({ 'background' : 'none'}); //Ditch the background
		$(this).find("span").hide(); //Hide the subnav
	});

	
	$('#slider-code').tinycarousel({ 
	axis: 'y',
	display: 1,
	controls: 'false',
	interval: 'true',
	intervaltime: 3000,
	rewind: 'true'

	
	});

	
});
