function bookmark_site(die_bookmark_url, der_bookmark_text) 
{
  if (navigator.appName == 'Microsoft Internet Explorer' && parseInt(navigator.appVersion) >= 4) {
    window.external.addFavorite(die_bookmark_url, der_bookmark_text)
  } else {
    alert("Diese Funktion ist leider nur mit Microsoft Internet Explorer möglich!");
  }
}

function set_home_site(olink,welche_url){
  olink.blur();
  if (navigator.appName == 'Microsoft Internet Explorer' && parseInt(navigator.appVersion) >= 4) {
    olink.style.behavior='url(#default#homepage)';
    olink.setHomePage(welche_url);
  } else {
    alert("Diese Funktion ist leider nur mit Microsoft Internet Explorer möglich!");
  }
  return false;
}


$(document).ready(function(){
	
	// nach jeder Reihe das Floating clearen --> IE6 und 7 Bug damit behoben
	jQuery('#images #thumbs li:eq(2), #images #thumbs li:eq(5)').after('<div class="clear"></div>');
	
})
