/*
-----::: ABCnet.nl © 2011 :::-----
DATE: 01/01/2011
EDITED: 01/01/2011
DESCRIPTION: This is the JavaScript required to showdivs Requires jQuery library 
*/
$(document).ready(function() {
						   $('.dreamzzz-m-line01').click(function () {
																   $(this).css("display","none");
																   $('.dreamzzz-m-line02').css("display","block");
																   });
   						   $('.dreamzzz-m-line02').click(function () {
																   $(this).css("display","none");
																   $('.dreamzzz-m-line01').css("display","block");
																   });
						   });
