(function() {
	$(document).ready(function() {
		
		$('#trailer-preview a').each(function() {

			var el = $(this);
			var pos = $(el).position();
			this.orig = {height: el.height(), width: el.width(), 'left': pos.left, 'top': pos.top};
			var img = $(this).find('img');
			this.imgorig = {height: img.height(), width: img.width()};
			

			$(this).bind('mouseover', function() {
				$(el).css('z-index', 500);
				$(el).animate({'width':'+=25px', 'height':'+=25px', 'left': '-=12', 'top': '-=12'}, 100);
				$(el).find('img').animate({'width':'+=25px', 'height':'+=25px'}, 100);
			});
			
			$(this).bind('mouseout', function() {
				var el = $(this);
				var img = $(this).find('img');
				$(el).css('z-index', 10);
				$(el).stop();
				$(img).stop();
				$(el).animate(this.orig);
				$(img).animate(this.imgorig)
			});
			$(this).bind('click', function() {
				var src = this.href;
				wvg.player.init(src);
			
				return false;
			});			
		});
	});
})(); 