$(function(){
	$.superbox.settings = {
		closeTxt: "Close",
		loadTxt: "Loading...",
		nextTxt: "Next",
		prevTxt: "Previous"
	};
	$.superbox();
		
	$('.content_body_rm').click(function() {
		$(this).prev("div").slideToggle('slow');
		$(this).text(jQuery(this).text() == 'Lees minder >>' ? 'Lees meer >>' : 'Lees minder >>');
	});

	$(".nav .img img").hover(
		function()
		{
		this.src = this.src.replace("_off","_on");
		},
		function()
		{
		this.src = this.src.replace("_on","_off");
		}
	);

$('.content_body_rm').hover(function() {
	$(this).addClass('content_body_rm_hover');
	}, function() {
	$(this).removeClass('content_body_rm_hover');
});



});

$(window).bind('load', function(){
   var preload = [
     'http://www.hadimassa.com/images/nav/news_on.jpg',
     'http://www.hadimassa.com/images/nav/news_off.jpg',
     'http://www.hadimassa.com/images/nav/portfolio_on.jpg',
     'http://www.hadimassa.com/images/nav/portfolio_off.jpg',
     'http://www.hadimassa.com/images/nav/company_profile_on.jpg',
     'http://www.hadimassa.com/images/nav/company_profile_off.jpg',
     'http://www.hadimassa.com/images/nav/contact_on.jpg',
     'http://www.hadimassa.com/images/nav/contact_off.jpg'
   ];           
   $(document.createElement('img')).bind('load', function(){
    if(preload[0]) this.src = preload.shift();
   }).trigger('load');          
});
