var current ="#lars-olle_larsson";
var currentamb = "#dipal_chandra_barua";


$(document).ready(function() {

  $(".jm_pic").click(function() {
	el = '#'+this.id.substring(2);
	$(current).hide();
	current=el;
	$(el).fadeIn("normal");
  });

  $(".am_pic").click(function() {
	el = '#'+this.id.substring(2);
	$(currentamb).hide();
	currentamb=el;
	$(el).fadeIn("normal");
  });


  $('a.mapitem').cluetip({local:true,cursor:'pointer',cluetipClass: 'ga', showTitle: false, positionBy: 'mouse'});
  $('img.nomineelogo').cluetip({attribute: 'id',cluetipClass: 'nominee',showTitle:false});


$('#video').cycle({ 
    speed:  4000
}); 

  $("#applybutton").click(function() {
	document.location.href='/apply';
  });
  $("#suggestbutton").click(function() {
	document.location.href='/suggest-a-candidate';
  });




});


