// JavaScript Document
$(document).ready(function(){
$('div.text').toggle(
	function(){
		$(this).parent('div').css({zIndex:'3'});
		$(this).animate({width:'200',height:'200',top:'-45px',left:'-45px'},'normal');
		$(this).children('ul').fadeIn('slow');
		$(this).children('h3').css({background:'#fff url(images/h3.gif) no-repeat left center'})
					.animate({fontSize:'20px',paddingLeft:'10px',paddingTop:'3px',paddingBottom:'3px'},'normal');
	},
	function(){
		$(this).children('ul').fadeOut('fast');
		$(this).animate({width:'110',height:'110',top:'3px',left:'3px'},'normal',
			function(){
				$(this).parent('div').css({zIndex:'2'})
			}
		);
		$(this).children('h3').css({background:'#fff none no-repeat left center'})
					.animate({fontSize:'36px',paddingLeft:'0px',paddingTop:'0px',paddingBottom:'0px'},'normal');
	}
);

$('.box03>ul>li>a').lightBox({
	overlayBgColor: '#FFF',
	overlayOpacity: 0.7,
	imageLoading: 'images/loading.gif',
	containerResizeSpeed: 400,
	txtImage: 'Image',
	txtOf: '/'
});
});
