jQuery.fn.protectImage = function(settings) {
	settings = jQuery.extend({
		image: 'blank.gif',
		zIndex: 10
	}, settings);
	return this.each(function() {
		var position = jQuery(this).offset();
		var height = jQuery(this).height();
		var width = jQuery(this).width();
		jQuery('<img />').attr({
			width: width,
			height: height,
			src: settings.image
		}).css({
			border: '1px solid #f00',
			top: position.top,
			left: position.left,
			position: 'absolute',
			zIndex: settings.zIndex
		}).appendTo('body')
	});
}; 

//jQuery(window).bind('load', function($) {
//	jQuery('img.protect').protectImage();
//});

//jQuery(document).ready(function($){
   // Your code here
//   $('#portfolioSlideshow').cycle()
// });


