$(document).ready(function(){
//open hidden panels
$(".showmore").click(function() {
	$(this).siblings().slideToggle("slow");
});
//open external links in new window
   $('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
//facebox
     // $('a[rel*=facebox]').facebox() 
	$('a[rel*=facebox1]').facebox();
	$('a[rel*=facebox2]').facebox();

//suckerfish menu
if($.browser.msie){
$("#leftnav li").hover(
	function () {
	$(this).addClass("sfhover");
	},
	function () {
	$(this).removeClass("sfhover");}
	);} 	
	
  });

//gallery
//    $(function() {
//        $('#gallery a').lightBox();
 //   });
