$(document).ready(function() {
	clearText($('input, textarea'));
	$.preloadCssImages();
	$(document).pngFix(); 
    $('#slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		random:1
	});
	/*$("#main-content p:first").addClass("first-paragraph");
	$("#main-content p.first-paragraph:first-letter").css({"float": "left", "font-size": "3em", "display": "block"})
	*/
	blurStyle = {'font-size':'0.9em'};
	focusStyle = {'font-size':'1em'};
	
	$('input, textarea').blur(function(){
		
		$(this).css(blurStyle);
	});
	$('input, textarea').focus(function(){	
		$(this).css(focusStyle);
	});
	function clearText(a){
		if($(a).attr('value') === ''){
			$(a).attr('value', 'click right here...');
		}
	}
	$('input[type=submit]').click(function(){$(this).animate({'backgroundColor':'#8c0c04','color':'#fff'})});

	$('#nav ul li a').hover(function(){
		$(this).animate({'borderBottom': '1px dotted', 'paddingBottom':'15px'}, 200);
	},
	function(){
	
		$(this).animate({'paddingBottom':'1px','borderBottom': '0px dotted'}, 200);
		//$('#nav ul li.current_page_item a').css('borderBottom','1px solid')
	});
});
//TO DO
	//GALLERY IMPLEMENTATION
	