$(document).ready(function(){

	if( $.isFunction(jQuery.fn.cycleStandard) ) {
		
		$('#top_banner img').show();
		$('#top_banner ul').cycleStandard({ 
			timeout: 10000,
			speed: 1200,
			pause: 1
		});
		
	}
	
	// Subcategory slide down on click
    $('#side_categories_main ul li.hasChilds a').click(function() {
    	
    	// Check if LI has children to open to
		if( $(this).parent().has('ul').size() ) {
			$(this).parent().children().nextAll('ul:first').slideToggle('fast');
			return false;
		}
		else {
			// we will goto link as normal as has no childs
		}
    	
    	// Remove active class from all items
    	$('#side_categories_main ul li').removeClass('active');
    	// Add to current item
		$(this).parent().addClass('active');
    	
		
	});
	
	
	
});


function clearText(thefield){
	if( thefield.defaultValue == thefield.value )
	thefield.value = ""
} 

