var h = 0;

jQuery(function($) {
	$('#photoListContainer a').click(function() {
	h = $(this).children('img').height() * 4;
	});
	
	$('ul').jqGalViewII();
	
	$('.trailerContainer').mouseover( function() {
		//$(this).children('.list_odd').css('background-color','#c6f4f3');
		//$(this).children('.list_even').css('background-color','#c6f4f3');
		$(this).css('background-color','#c6f4f3');
		$(this).css('border','1px solid #0000ff');
		$(this).css('cursor','pointer');
	});
	
	$('.trailerContainer').mouseout( function() {
		//$(this).children('.list_odd').css('background-color','#e7e7e7');
		//$(this).children('.list_even').css('background-color','#f1f0c5');
		$(this).css('background-color','#efefef');
		$(this).css('border','1px solid #cccccc');
	});

});

function goTrailer(url) {
	window.location = url;
}