// JavaScript Document

$(document).ready(function(){
				$(".1").colorbox({opacity: 0.75, innerWidth:700, inline:true, href:"#inline_1",onComplete: function() {
					$('#cboxClose').remove();
					$('#cboxContent').height($('#cboxContent').height()-23);
	
				}});
				$(".2").colorbox({opacity: 0.75, innerWidth:700, inline:true, href:"#inline_2",onComplete: function() {
					$('#cboxClose').remove();
					$('#cboxContent').height(614);
	
				}});
				$(".3").colorbox({opacity: 0.75, innerWidth:700, inline:true, href:"#inline_3",onComplete: function() {
					$('#cboxClose').remove();
					$('#cboxContent').height(500);
	
				}});
				$(".4").colorbox({opacity: 0.75, innerWidth:700, inline:true, href:"#inline_4",onComplete: function() {
					$('#cboxClose').remove();
					$('#cboxContent').height(522);
	
				}});
				});

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'});			
				}
			);
		});
});
