jQuery(document).ready(function($) {
	var imagedir = "/wp-content/themes/bethechange/images/";
	$(".featured-post a").each(function(){
		href = $(this).attr('href');
		if(href.indexOf('#video') != -1) {
			$(this).append('<img src="'+imagedir+'play-button.png" class="gallery-play-button">');
			$(this).hover(function() {
				$(this).children('img.gallery-play-button').attr('src', imagedir+'play-button-over.png');
			}, function() {
				$(this).children('img.gallery-play-button').attr('src', imagedir+'play-button.png');
			});
		}
	});
});
