/**
 * Image Overlay
 * 
 * @version 1.0.0
 * @author LzzL
 * 
 * jQuery 1.2.6
 */

$(function(){
	
/**
 * list items hover
 * 
 */
	// MouseOver effect op submit buttons
	$('input.txtLink').hover(function() {
  		$(this).addClass('txtLinkHover');
 	}, function() {
	  	$(this).removeClass('txtLinkHover');
 	}); 
	$('input.submit').hover(function() {
  		$(this).addClass('btnHover');
 	}, function() {
	  	$(this).removeClass('btnHover');
 	});	
	$('.forgetButton').click(function() {
	  	$('#forgetBox').toggle('slow');
	  	return false;
 	}); 
 	
	/**
	 * Voorstellingen list items
	 * 
	 */
	$('.highlight li').hover(function(){
		$(this).addClass('hover');
		$(this).find('a.leesMeer').addClass('hover');
	},function(){
		$(this).removeClass('hover');
		$(this).find('a.leesMeer').removeClass('hover');
	});

	$('.highlight li .txtLink').hover(function(){
		$(this).parents('li').find('a.leesMeer').removeClass('hover');
	},function(){
		$(this).parents('li').find('a.leesMeer').addClass('hover');
	});

	$('.highlight li').click(function(){
		sHref = $(this).find('a.leesMeer').attr('href');
		window.location.href = sHref;	
	});	
});

