// JavaScript Document
/*Cufon.replace('h1,.block-title, #nav li a, .goeie_prijs, .f_special_price');
Cufon.replace('.slider-titel, .slider-prijs',{	textShadow: '#231f20 0px 2px'});
Cufon.replace('.groen_knop',{	textShadow: '#231f20 0px 1px'});
Cufon.replace('.oranje_knop',{	textShadow: '#231f20 0px 1px'});*/
jQuery.noConflict(); 

jQuery(document).ready(function($) {


$("#slider").easySlider({
		auto: true,
		continuous: true,
		numeric: true,
		pause: 15000
	});

	$(".nav_category li ul").append("<li><span class=\"submenu_footer\"></span></li>"); //Only shows drop down trigger when js is enabled (Adds empty span tag after ul.subnav*)

	$(".nav_category li ul").hide();
	$(".nav_category li ").hover(function() { //When trigger is clicked...
										  

		//Following events are applied to the subnav itself (moving subnav up and down)
		$(this).find("ul").fadeIn("fast"); //Drop down the subnav on click

		$(this).hover(function() {
		}, function(){
			$(this).find("ul").fadeOut("fast"); //When the mouse hovers out of the subnav, move it back up
		});

		//Following events are applied to the trigger (Hover events for the trigger)
		}).hover(function() {
			$(this).addClass("subhover"); //On hover over, add class "subhover"
		}, function(){	//On Hover Out
			$(this).removeClass("subhover"); //On hover out, remove class "subhover"
	});

});



