

// This function is to the banner image speed

   $(document).ready(
				function(){
					$('ul#portfolio').innerfade({
						speed: 3000,
						timeout: 9000,
						type: 'random',
						containerheight: '200px'
					});
			});
   

// This function is to clear the SEARCH box 
   
$(function() {
    swapValues = [];
    $(".swap_value").each(function(i){
        swapValues[i] = $(this).val();
        $(this).focus(function(){
            if ($(this).val() == swapValues[i]) {
                $(this).val("");
            }
        }).blur(function(){
            if ($.trim($(this).val()) == "") {
                $(this).val(swapValues[i]);
            }
        });
    });
});