 jQuery.noConflict();
 jQuery(document).ready(function($) {
  // fix voor WordPress Flickr Photo Album plugin    
  var test = $("div.album img").attr("height");
  if (test == undefined || '')
  {
      $("div.album img").attr("height", 75);	  
  }
/*
   if(typeof console != "undefined") { 	  
	  var test = $("div.album img").attr("height");
	  console.log(test);
	  }
*/	  
  
  // rollovers voor navigatie 	
	$("#nav > li:not(.active) > a > img, #contact > a > img").hover(	
	 // mouseover
   function() {$(this).attr("src", $(this).attr("src").split('-off').join('-on'))},
   
   //mouseout 	
	 function() {$(this).attr("src", $(this).attr("src").split('-on').join('-off'))}
  );
  
  $("#nav > li.active > a > img").attr("src", $("#nav > li.active a img").attr("src").split('-off').join('-on'));
 });
