﻿$(document).ready(function(){
	//
	$('ul.productlist li div.content').bind('mouseenter', function(event){
		event.preventDefault();
		$(this).parent().addClass('hover')
		//up
		$(this).children('div.intro').animate({ 
				bottom:22
			}, 750 );
		}).bind('mouseleave', function(event){	
		event.preventDefault();
		$(this).parent().removeClass('hover')
		//down
		$(this).children('div.intro').animate({ 
				bottom:-70
			}, 350 );
		}).bind('click', function(event){	
			event.preventDefault();
			//href
			var href = $(this).children('div.intro').children('a').attr('href');
			location.href = href;
		});
	//
	
	//dropdown
	//hide children	
	$('ul.subnavigation > li:not(.active)').children('ul').hide();
	//add function hide/show children
	$('ul.subnavigation > li > a').click(function(event) { 
		$(this).parent().toggleClass('active').children('ul').slideToggle('fast');
		return false;	
	});
		
	//
	
	//search
	$('div.productsearch fieldset.more:not(.active)').hide();
	//add function hide/show children
	$('div.productsearch a').click(function(event) { 
		event.preventDefault();
		toggleSearch(this); 
	});	
	

    $('#print').click(function() {
	    window.print();
	});	
	
	function toggleSearch(elm) {		
		$('div.productsearch fieldset.more').toggleClass('active').slideToggle('fast');
		$('div.productsearch #zoekButton1').toggle();
	}
		
});