$(document).ready(function() {
	$('input.mc_interest').attr('checked', true);
	
	$("p a[href$='.pdf']").addClass("pdf");
	$("p a[href$='.PDF']").addClass("pdf");
	
	$("a[href$='.pdf'] img").parent().removeClass("pdf");
	$("a[href$='.PDF'] img").parent().removeClass("pdf");
	
	var numRand = Math.floor(Math.random()*9)
    $('#slideshow').cycle({
		fx: 'fade',
		pause:  1,
		startingSlide: numRand,
		cleartype:  1,
		timeout: 6000
	});
	
	$('#commentform input, #commentform textarea, #commentform select, .subscribe-email').focus(function(){
		$(this).addClass("over");
		}).blur(function(){
		$(this).removeClass("over");
	});
	
	$('a[href$="http://www.deliciousdays.com/cforms-plugin"]').parent().hide();

});

