$(document).ready (function () 
{ 
  addEventsForElements ();
  $('a[rel*=facebox]').facebox();
});


function addEventsForElements ()
{
  $('#teaser_jubi').bind(
      'mouseover', 
      function (e)
      {
        $('#teaser_jubi').css ({'background-color' : '#D4E074', 'cursor' : 'pointer'});
      });
  $('#teaser_jubi').bind(
      'mouseout', 
      function (e)
      {
    	  $('#teaser_jubi').css ({'background-color' : '#ffffff', 'cursor' : 'default'});
      });
  $('#teaser_jubi').bind(
	  'click', 
	  function (e)
	  {
	     window.location.href = '/'
      });
  
  $('#teaser_fb').bind(
      'mouseover', 
      function (e)
      {
        $('#teaser_fb').css ({'background-color' : '#D4E074', 'cursor' : 'pointer'});
        $('.teaser_fb').css ({'background-color' : '#D4E074', 'cursor' : 'pointer'});
      });
  $('#teaser_fb').bind(
      'mouseout', 
      function (e)
      {
    	$('#teaser_fb').css ({'background-color' : '#ffffff', 'cursor' : 'default'});
    	$('.teaser_fb').css ({'background-color' : '#ffffff', 'cursor' : 'default'});
      });
  $('#teaser_fb').bind(
	  'click', 
	  function (e)
	  {
	     // window.open('http://www.facebook.com/pages/Umweltbundesamt/114651115215103');
      });
}
