/*
-----::: ABCnet.nl © 2010 :::-----
DATE: 21/12/2010
EDITED: 21/12/2010
DESCRIPTION: This is the JavaScript required to showdivs Requires jQuery library 
*/




$(document).ready(function() {
	
	/********************************************************************************************************************

	********************************************************************************************************************/	
		
	// 6 	Contact button	= div.start01-06-01
		$('div.start01-06-02').click(function() {
											window.location.href = "/contact.aspx";
												});
		
		$('div.start01-06-01').hover(
									 
									 function(){
										 										
										 $('#start01-06-02').fadeIn('3000','linear');
										
									 },
									 function(){
									 }
									 );
		$('div.start01-06-02').hover(
									 
									 function(){
										
									 },
									 function(){
										 $('#start01-06-02').fadeOut('3000');
									}
									 ); 
	// 15	Home button	= div.start01-15-01
		$('div.start01-15-02').click(function() {
											window.location.href = "/default.aspx";
												});
		
		$('div.start01-15-01').hover(
									 
									 function(){
										
										 $('#start01-15-02').fadeIn('3000','linear');
										
									 },
									 function(){
									 }
									 );
		$('div.start01-15-02').hover(
									 
									 function(){
										
									 },
									 function(){
										 $('#start01-15-02').fadeOut('3000');
									 }
									 ); 
	// RESET BODY BUTTON
	$('#body').hover(
									 
									 function(){
																				 
										 $('#start01-06-02').fadeOut('3000');
										 $('#start01-15-02').fadeOut('3000');
																				
									 },
									 function(){}); 
});
