$(document).ready(function(){
													 
	//Date
	$('#calendar').epiclock({format: 	'j{ }M{ }Y'}) .clocks(EC_RUN); // Then start the manager. 
				
	//Header Forms
	$("input.srchfld, input.logfld").focus(function () {
		$(this).attr("value","");
	});
	$("input.srchbutt, #clockbutt, #mobbutt").attr("value","");

	//Text Resizer
  $( "a.default-text, a.large-text" ).textresizer({
     target: "div.flexitext",
     type: "cssClass",
     sizes: [
        "large-text",						 
        "default-text"

     ],
     selectedIndex: 0
  });
	
	// Carousel
//	$('#sidecarousel').jcarousel({
//		vertical: true,
//		scroll: 2
//	});	
	
	
	//IE 6Min-Width 
	if (jQuery.browser.msie) {
  	if (parseInt(jQuery.browser.version) < 7) {			
		 $(window).resize(function(){
				if ($(this).width() < 800 ) {
					$("#shield-fluid").width(785);			
				} else {
					$("#shield-fluid").width('100%');		
				}
			});			
		}	
	}



 
});
