function runjquery(){
	$('#flash').remove();
	$('#slider').show().plusSlider({
		createArrows: false,
		displayTime: 4000,
		paginationWidth: false,
		sliderType: 'fader'
	});
	}
/* Author: Jamy Golden */
$(document).ready(function(){
	$('#shoes').find('a').each(function(){
		$(this).fancybox({
			'titleShow': false,
		    'width': '80%',
		    'height': '80%',
		    'onComplete': function(){
		    	$('#shoe-content').find('a').attr('href', '#').click(function(){
		    		$('#shoe-image').attr('src', $(this).attr('data-img'))
		    	});
		    },
		    'type': 'ajax',
		    'ajax': {
		        dataFilter: function(data) {
		            return $(data).find('#shoe-content')[0];
		        }
		    }
		});
	});
});
