function screenShotSetup() {
	
	//dresses each of the screenshots 
	$(".screenshots img").each(function() {
	    var src = $(this).attr('src').replace('_small','_large');
	    var a = $('<a/>').attr('href', src);
        $(this).wrap(a);
	});
	
	
	$(".screenshots a").wrap("<div class='screenshot'></div>");
	$(".screenshots p").wrap("<div class='feature'></div>");
	
	$("#main-content img").each(function(){

		if ($(this).hasClass("no-large")==false) {
			var src = $(this).attr('src').replace('_medium', '_large');
			var a = $('<a/>').attr('href', src);
        	$(this).wrap("<div class='screenshot'></div>").wrap(a);
		}
	})

	if ("#quote"!=[]){
        $("#quote").html($(".quote:eq("+(Math.floor(Math.random()*($(".quote").length))+"")+")").html());
    }
	
}

$(window).load(function() {
	if ($("#blurb h3").hasClass(".sIFR-replaced")) {
		$("#blurb h3").css("margin-bottom", "0");
	}
});

