
jQuery.noConflict();

(function($)
{
	$(document).ready(function()
	{
		// Init kfBox
		$.kfBox.groupNames = ['attached', 'videobox'];
		$.kfBox.useHistory = false;
		$.kfBox.boxWidth = 850;	

		ShowMovie = function(href){
			$.kfBox.preloadHtml(href);	
		}
		
		ShowReel = function(href){
			if(href != 'undefined'){
				$("#reelArea").load(href);
			}
		}
		
		$('.video-gallery a')
			.bind('mouseenter', function(){
				var $this = $(this);
				$('img', $this).animate({ height: 0, marginTop: 50 }, 200, 'swing', function(){
					// $('.desc', $this).fadeIn(400);
				});
				$('.desc', $this).css({ display: 'none' }).fadeIn(800);
			})
			.bind('mouseleave', function(){
				var $this = $(this);
				
				setTimeout(function(){
					$('.desc', $this).fadeOut(50, function(){ }); 
					$('img', $this).stop().animate({ height: 88, marginTop: 0 }, 200, 'swing');
				}, 100);
			})
			.kfBox({minWidth: 840});
			
		
		
		// Menu hover effect:
		$('#menu a')			
			.bind('mouseenter', function(){
				$(this).stop();
				$(this).css({ backgroundPosition: '0 -300px'});
				$(this).animate({ backgroundPosition: '(0 0)' }, 1200, 'swing'); 
			})
			.bind('mouseleave', function(){
				$(this).stop();
				$(this).css({ backgroundPosition: '0 0'});
				$(this).animate({ backgroundPosition: '(300px 0)' }, 600, 'swing'); 
			})
	});
	
})(jQuery);




