 $(document).ready(function(){
	$(".resource_video").click(function(){
		var strURL = $(this).attr("href");
		Shadowbox.open({
			content:	strURL,
			player:		"iframe",
			title:		"Increlex Resource Videos",
			height:		480,
			width:		900
		});
		return false;
	});
});

