$(document).ready(function() {

	var h=$('#footer').css('height');
	$('#footer').css({'height':'44px'});
	$('#btn_footer').click(function() { 
		if($('#footer').height()<45) {
   			$('#footer').stop().animate({ 'height': h }, 250);
			$('#btn_footer').addClass('current');
		}
		else {
   			$('#footer').stop().animate({ 'height': '44px'}, 250);
			$('#btn_footer').removeClass('current');
		}
  		return false;
   	});
	
$("a.thickbox, a[rel='lightbox']").fancybox({
			'hideOnContentClick': false,
			imageScale : true
		}); 
		$("a#box_ami").fancybox({
			frameWidth : 300,
			frameHeight : 200
		}); 
		if(document.all){
			$("a#box_fav").click(function(){
				window.external.AddFavorite(location.href, document.title);
			});
		}else{
			$("a#box_fav").fancybox({ 
				'hideOnContentClick': true,
				frameWidth : 400,
				frameHeight : 100			 
			});
		}
		
		
});
