(function($) {
    $.fn.extend({
        PlayButtons : function() {            
            return this.each(function() {
		var img = jQuery(this).find('img');
		if (img.length > 0)
		{
		jQuery(this).css('background-image', 'url(' + img.attr('src') + ')').css('width', img.attr('width')).css('height', img.attr('height')).addClass('playButton');
		img.attr('src', '/resources/images/play-video.png').attr('width', '40').attr('height', '40');
		}
    		});
  	}});
})(jQuery);

(function($) {
    $.fn.extend({
        HoverButtons : function() {            
            return this.each(function() {
		var img = jQuery(this).find('img');
		if (img.length > 0)
		{
			jQuery(this).parent().css('background-image', 'url(' + img.attr('src') + ')');
			jQuery(this).addClass('playButton');
			img.hide();
			jQuery(this).hover(
				function () {
				    $(this).addClass('hover');
				}, 
  				function () {
    					$(this).removeClass('hover');
  				}
			);

		}
    		});
  	}});
})(jQuery);



jQuery(document).ready(function() {
	jQuery('div.photoBox.videoBox a').PlayButtons();
	jQuery('div.photoBox.hoverBox a').HoverButtons();
});

