// JavaScript Document

$(function(){
		   
	$("#wp-calendar thead tr th:first").css("color","#ff0000");
	$("#wp-calendar thead tr th:last").css("color","#0000ff");

	$("#wp-calendar tbody tr").each(function(){
		$(this).children("td:first").addClass("sun");
		$(this).children("td:last").addClass("sat");
	});

	$(".entry img,.cat-entry img").each(function(){
		var urlSrc = $(this).attr("src");
		if(urlSrc.match('uploads')){
			$(this).addClass("imgFrame");
		}
	});

	$("#comment").fieldtag();
//	if (navigator.platform == "iPad") return;
//	jQuery("img").lazyload({
//		effect:"fadeIn",
//		placeholder: "http://www.aroma-blog.com/images/grey.gif"
//	});
});

