/**
 * @author kchevalier@suntouchdesign.com
 */

$(document).ready(function(){
	Protect.init();
});

var Protect = {
	init: function() {
		$('.protect').each(function(i){
			var transparentGif = 'url(/images/protect.gif)';
			var imgWidth = $(this).width();
			var imgHeight = $(this).height();
			var imgPosition = $(this).css('position');
			if ( imgPosition == 'static' ) {
				imgPosition = 'relative';
			}
			$(this).wrap('<div class="imgWrap"></div>').parent().css({ width: imgWidth, height: imgHeight, position: imgPosition });
			$(this).before('<div class="cover"></div>').prev('.cover').css({ width: '100%', height: '100%', 'background-image': transparentGif, position: 'absolute', 'z-index': 100 });
		});
	}
};
