var j = jQuery.noConflict();

j(document).ready(function() {
	j('div.vidPlayer2').hover(function() {
		j(this).addClass('vidPlayer2Hover');
	}, function() {
		j(this).removeClass('vidPlayer2Hover');
	});
});


j(document).ready(function() {
	j('div.vidPlayer2').click(function() {
		window.location = j(this).attr("url");
	});
});


j(document).ready(function() {
	j('div.link').click(function() {
		window.location = j(this).attr("url");
	});
});