$(document).ready(
	function(){
		
		// Do Flash messages
		
		$('div.error em, div.warn em, div.notice em').click(
			function(){ 
				$(this).parent().fadeTo('fast',.01).slideUp(); 
			});

		// Faux Dropdown Boxes

		$('ul.dropdown li.select').bind("click mouseleave",function(event){
			
			if(event.type == "click"){
				$(this).children('ul').slideDown('fast');
				$(this).parent().addClass('dropdown-open');
			}else{
				$(this).children('ul').slideUp('fast');
				$(this).parent().removeClass('dropdown-open');
			}
		});
		
		$('div.tabbed').tabs();
		$('input.datepicker').datepicker({ changeYear: true, minDate: "+0", maxDate: '+7y', dateFormat:'yy-mm-dd' });
		
		var off = true;
		$('table.striped tr').each(
			function(el){
				if(off == false){
					$(this).addClass('stripe');
					off = true;
				}else{
					off = false;
				}
				
			});
			
	}
);
