
function subInitPage() {
    $('#dateSelect').change(function() {
	    $('#dateForm').submit();
	});

    $('.movieListing').click(function() {
	    link = $(this).find('a').attr('href');;
	    window.open(link);
	});

    $('.movieLink').click(function() {
	    link = $(this).attr('href');;
	    window.open(link);
	    return false;
	});

    $('.movieLink').mouseover(function() {
	id = $(this).attr('id').split('_')[1];
	p = $(this).offset();
	offsetY = p.top;
	if (id > 1) {
	    offsetY -= 75;
	}


	// Move poster up if it is off the screen bottom
	if (offsetY + $('#poster_'+id).height() > ($(window).height() + $(window).scrollTop())) {
	    offsetY = ($(window).height() + $(window).scrollTop()) - $('#poster_'+id).height() - 30;
	}

	// Set offset
	$('#poster_'+id).css('top',offsetY+'px');
	$('#poster_'+id).toggle();
	});
			      
    $('.movieLink').mouseleave(function() {
	    id = $(this).attr('id').split('_')[1];
	    	    $('#poster_'+id).toggle();

	});



    $('.movieListing').mouseenter(function() {

	    $(this).addClass('movieListing_on');

	});
    $('.movieListing').mouseleave(function() {
	    $(this).removeClass('movieListing_on');
	});
}

