$(document).ready(function(){
		
			//Blur Links (Prevents Outline)
			$('#page-block a').click(function() {
        		this.blur();
        	});
		
			//Hide all item descriptions in the info box
			$("#infobox > div").css("display", "none");
		
			//Call in the info box
			$("#page-block .more a").click(function(){
				$("#infobox").animate({bottom: '150px' }, 300);
				if ( $.browser.msie && parseInt($.browser.version) == 6 ) {
  					$("#infobox > span.close").css('display', 'block');
				}
				else {
					$("#infobox > span.close").delay('200').fadeIn();	
				}
				
				return false;
			});
			
			//Expand more info button on hover
			$("#page-block .more").hover(function(){
				$(this).stop().animate({width: '150px' }, 200).css({'z-index' : '10'}); //Change the width increase caption size
			}, function () {
				$(this).stop().animate({width: '26px' }, 200).css({'z-index' : '1'});
      		});
      		
      		//Show description for selected item
      		$("#product-01-more a").click(function(){
				$("#product-01-info").show();
			});
			
			$("#product-02-more a").click(function(){
				$("#product-02-info").show();
			});

      		$("#product-03-more a").click(function(){
				$("#product-03-info").show();
			});
			
      		$("#product-04-more a").click(function(){
				$("#product-04-info").show();
			});
			
			$("#product-05-more a").click(function(){
				$("#product-05-info").show();
			});
			
			$("#product-06-more a").click(function(){
				$("#product-06-info").show();
			});
						
			//Remove background, info box and hide all descriptions
			$(".close").click(function(){				
				if ( $.browser.msie && parseInt($.browser.version) == 6 ) {
  					$("#infobox > span.close").css('display', 'none');
				}
				else {
					$("#infobox > span.close").fadeOut();	
				}
				
				$("#infobox").delay('100').animate({bottom: '-200px' }, 300, function() {
					$("#infobox > div").delay('500').css("display", "none");
				});
				return false;
			});
		
		}); 
