jQuery(function() {
	
	image1 = new Image();
	image1.src = "http://www.minddesigns.dk/assets/templates/md/css/img/mereh.png";

	image2 = new Image();
	image2.src = "http://www.minddesigns.dk/assets/templates/md/css/img/mereRefh.png";
	
	//ACCORDION BUTTON ACTION	
	jQuery('div.refHeading').click(function() {
		jQuery('div.refContent').slideUp('normal');	
		jQuery(this).next().slideDown('normal');
	});
 
	//HIDE THE DIVS ON PAGE LOAD	
	jQuery("div.refContent").hide();
	
	jQuery("div.refContent:first").show();

	
	jQuery('a.lightbox').lightBox();
	
	//Menu animation
	jQuery('.link1').hover(function() {
		jQuery('#navSlider').stop().show().animate({right:'299px'},{duration:200});
	});
	jQuery('.link2').hover(function() {
		jQuery('#navSlider').stop().show().animate({right:'216px'},{duration:200});
	});
	jQuery('.link3').hover(function() {
		jQuery('#navSlider').stop().show().animate({right:'133px'},{duration:200});
	});
	jQuery('.link4').hover(function() {
		jQuery('#navSlider').stop().show().animate({right:'50px'},{duration:200});
	});
	jQuery('#nav').mouseout(function() {
		jQuery('#navSlider').stop().hide();
	});
	
	jQuery('#navSlider').hide();
});


