$(document).ready(function() {
	//alert('JQuery Loaded')
//Home page animation
//$('#portfolio').innerfade({ 
		//	speed: 'slow', 
			//timeout: 4000, 
			//type: 'sequence', 
		//containerheight: '300px' 
		//	});  

//gallery
//http://colorpowered.com/colorbox/
//see jquery.colorbox-min.js
			$("a[rel='example3']").colorbox({
				transition:"none", 
				width:"75%", 
				height:"75%"
//end gallery
			});



//clears text in Search box header
$('input.clear').each(function() {
    $(this)
      .data('default', $(this).val())
      .addClass('inactive')
      .focus(function() {
        $(this).removeClass('inactive');
        if($(this).val() == $(this).data('default') || '') {
          $(this).val('');
        }
      })
      .blur(function() {
        var default_val = $(this).data('default');
        if($(this).val() == '') {
          $(this).addClass('inactive');
          $(this).val($(this).data('default'));
        }
      });
  });




//end doc
});


