/*
-----::: ABCnet.nl © 2011 :::-----
DATE: 10/02/2011
EDITED: 26/01/2011
DESCRIPTION: Image clicks for www.dreamzzz.nl
*/

$(document).ready(function() {
	
	
	// HOVER maandaanbieding
$('#maandaanb').hover(
									 
									 function(){
										
										 $('#maandaanb').fadeTo('slow', 0.66);
										
									 },
									 function(){
										 $('#maandaanb').fadeTo('slow', 1.00);
									 }
									 );
		
	// HOVER service
$('#service').hover(
									 
									 function(){
										
										 $('#service').fadeTo('slow', 0.66);
										
									 },
									 function(){
										 $('#service').fadeTo('slow', 1.00);
									 }
									 );
		
	// HOVER logo
$('.logo').hover(
									 
									 function(){
										
										 $('.logo').fadeTo('slow', 0.66);
										
									 },
									 function(){
										 $('.logo').fadeTo('slow', 1.00);
									 }
									 );
		
	// HOVER webshop groups
$('.con-midrighht img').hover(
									 
									 function(){
										
										 $(this).fadeTo('slow', 0.66);
										
									 },
									 function(){
										 $(this).fadeTo('slow', 1.00);
									 }
									 );
		
		// HOVER logo
$('.link').hover(
									 
									 function(){
										
										 $('.link').fadeTo('slow', 0.66);
										
									 },
									 function(){
										 $('.link').fadeTo('slow', 1.00);
									 }
									 );
		
	// click logo default
	$('.logo').click(function() {
											window.location.href = "/default.aspx";
												});
	// EN bekijk al onze aanbiedingen 
/* remarked no flags here not yet unmark for implementation  con-midrighht
$('.en').hover(
									 
									 function(){
										
										 $('.en').fadeTo('slow', 0.33);
										
									 },
									 function(){
									 }
									 );
		$('.en').hover(
									 
									 function(){
										
									 },
									 function(){
										 $('.en').fadeTo('slow', 1.00);
									 }
									 );
	// EN bekijk al onze aanbiedingen
$('.de').hover(
									 
									 function(){
										
										 $('.de').fadeTo('slow', 0.33);
										
									 },
									 function(){
									 }
									 );
		$('.de').hover(
									 
									 function(){
										
									 },
									 function(){
										 $('.de').fadeTo('slow', 1.00);
									 }
									 );*/

});
