%@ page import="java.util.Calendar" %>
Floral Fantasy
<%
int cat_id = 0;
Calendar today;
today = Calendar.getInstance();
// Valentine's Day 1/15 - 2/14
if ((today.get(Calendar.MONTH) == 0 && today.get(Calendar.DATE) > 14) || (today.get(Calendar.MONTH) == 1 && today.get(Calendar.DATE) < 15)){
cat_id = 19;
}
// Easter
if ((today.get(Calendar.MONTH) == 2) || (today.get(Calendar.MONTH) == 3 && today.get(Calendar.DATE) < 25)){
cat_id = 20;
}
// Mother's Day
if ((today.get(Calendar.MONTH) == 3 && today.get(Calendar.DATE) > 24) || (today.get(Calendar.MONTH) == 4 && today.get(Calendar.DATE) < 15)){
cat_id = 21;
}
// Fourth of July
if ((today.get(Calendar.MONTH) == 5 && today.get(Calendar.DATE) > 14) || (today.get(Calendar.MONTH) == 6 && today.get(Calendar.DATE) < 5)){
cat_id = 22;
}
// Halloween
//if (today.get(Calendar.MONTH) == 9)
//{
// cat_id = 14;
//}
// Thanksgiving
if (today.get(Calendar.MONTH) == 10){
cat_id = 15;
}
//December Holidays
if (today.get(Calendar.MONTH) == 11){
%>
<%
}
if (cat_id != 0){
%>