// JavaScript Document

 $(document).ready(function() {
							
	$(".field-cat fieldset, .field-last fieldset, .awards, #date-added").hover(function() {
		$(this).css("border", "1px solid #c69036");
		$("legend a", this).css("color", "#5b5957");
		$("#date-arrow", this).css("background","url(images/nav_pointer-yellow.jpg) no-repeat center bottom")
		},function(){
     	$(this).css("border", "1px solid #efefef");
		$("legend a", this).css("color", "#c69036");
		$("#date-arrow", this).css("background","url(images/nav_pointer.jpg) no-repeat center bottom")
	});
	
	$(".friends").hover(function() {
		$(this).css("border-top","1px solid #c69036");
		$(this).css("border-right","1px solid #c69036");		
		$(this).css("border-bottom","1px solid #c69036");
		$(this).css("border-left","1px solid #c69036");
		},function(){
		$(this).css("border-top","1px solid #f8f8f8");
		$(this).css("border-right","1px solid #ccc");		
		$(this).css("border-bottom","1px solid #ccc");
		$(this).css("border-left","1px solid #f8f8f8");
	});	
	
	$("#logo").hover(function() {
		$("#home-icon",this).css("display","block");
		},function(){
		$("#home-icon",this).css("display","none");
	})
 });


$(document).ready(function() { 
	$("#hor-folio li a, .hor-folio-book li a, .awards-pic a").fancybox({
		'overlayShow': true
	}); 
}); 
