$(document).ready(function(){
	// slideshow
		$('#slideshow').galleryView({
			panel_width: 700,
			panel_height: 284,
			frame_width: 200,
			frame_height: 80
		});
		
		
		$('#concept-container').css('text-indent',0);
	// basic show and hide
		$('.tool-tip-show-hide').mouseover( function() {
			$('div.tool-tip').fadeIn();
		});
	
	 	$('.tool-tip-show-hide').mouseout( function() {
	 		$('div.tool-tip').fadeOut();
	 	});
	 	
	// clip function
	 	$('img.side-image').wrap('<div class="clip" />');

		
	});
	
function clearIt(what)
{
if(what.value == what.defaultValue) what.value = '';
}
function setIt(what)
{
if(what.value == '') what.value = what.defaultValue;
}

