$(document).ready(
	function() {
	$('#spot').flash(
						{
						swf:'video/starbene-video.swf',
						width: 680,
						height: 370,
						play: false
						});
		
/*	if ($(window).width() < 481) {
					$(window).unbind();
					}	*/
	 $('.team p').css("opacity", 0);
				  
				  $('.team').bind("mouseenter", (function()
				  {
						$(this).children('p').animate({height: "40px", opacity: 1},300);
				  }));
				  
				  $('.team').bind("mouseleave", (function()
				  {
						$(this).children('p').animate({height: "0px", opacity: 0},200);
						
						
				  }));
				
			if ($(window).width() < 481) {
						$('.team p').css("opacity", 1);
						$('.team').unbind("mouseenter mouseleave");
					}					
				
});
$(window).bind("load", function() {
			$("div#slider1").codaSlider()
		});

