jQuery.noConflict();

jQuery(document).ready(function() {

  //set random page background image
  noImages = 5;
  randomNumber = Math.round(Math.random() * (noImages -1)) + 1;
  imgPath=('/wp-content/themes/kruta/images/bg' + randomNumber + '.gif');
  jQuery('body').css('background-image', ('url("'+imgPath+'")'));

  //set class for first item in menu & add page heading "aktuellt"
  var thisPageClass = jQuery('body').attr('class').split(' ');
  if(thisPageClass[0] == 'home') {
    jQuery('#page_navigation ul li:first-child').addClass('current_page_item');
  }

  //display title for projects
  jQuery(".project_item").hover(
    function() { jQuery(this).children().show();},
    function() { jQuery(this).children().hide();}
	);

});
