$(document).ready(function(){

	if ($.isFunction(jQuery.fn.cycleStandard)) {
		
		$('#mid_home-left').show();
		$('#mid_home-right').show();
		
		$('#mid_home-left ul').cycleStandard({ 
		    timeout: 2500,
		    speed: 600,
		    pause: 1
		});
		
		$('#mid_home-right ul').cycleStandard({ 
		    timeout: 4200,
		    speed: 700,
		    pause: 1
		});
		
	}
	
	$('#itemListMenu li a').click( function() {
		
		if ($(this).hasClass('hasChilds')) {
			childs = $(this).next('ul');
			if ($(childs).is(':hidden')) {
				$(childs).slideDown('slow');
			} else {
				$(childs).slideUp('slow');
			}
			return false;
		} else {
			return true;
		}
	});

	
});


function clearText(thefield){
	if (thefield.defaultValue==thefield.value) {
		thefield.value = "";
	}
} 
