// JavaScript Document

$(document).ready(function(){
				$("a[rel='gallerysigns']").colorbox();
				$(".1").colorbox({width:"650px", inline:true, href:"#inline_1"});
				$(".2").colorbox({width:"650px", inline:true, href:"#inline_2"});
				$(".3").colorbox({width:"650px", inline:true, href:"#inline_3"});
				$(".4").colorbox({width:"700px", inline:true, href:"#inline_4"});
				});

jQuery(document).ready(function(){
	$("#iconbar li").hover(
		function(){
				$(this).find("span").attr({
				"style": 'display:block'
			});
			$(this).find("span").animate({opacity: 1, top: "-40px"}, {queue:false, duration:400});
		}, 
		function(){
		$(this).find("span").animate({opacity: 0, top: "-30px"}, {queue:false, duration:400}, "linear",
				function(){
					$(this).find("span").attr({"style": 'display:none'});			
				}
			);
		});
});
