//
//
// 
// SLIDE (MENU)
//
//
//
this.Slide = function (){
	
	$('a.accButton').click(function() {
		if($(this).next().is(':visible')) {
			$('div.accContent').slideUp('slow');	 // slow, normal, fast
			//$('.toggle_container').hide();	 // slow, normal, fast
		} else {
			$('div.accContent').slideUp('slow');
			//$('.toggle_container').hide();	 // slow, normal, fast
			$(this).next().slideDown('slow');
			//$(this).next().show();
		}	
	});
 
	//HIDE THE DIVS ON PAGE LOAD	
	$('div.accContent').hide();
};
//
//
// 
// SLIDE (MENU)
//
//
//
this.LightBox = function() {
	$('a[rel="lightbox"]').lightBox();
};
