// JavaScript Document
//This was written by James Baldys
//This particular file was created for the Life Skills page @ UVa
//Copyright 2007 Under the MIT license.  Feel free to use it.
//...Unless you are competition of Jim White && James Baldys, in which case, a pox upon you!
if (document.images) {
	preload_image1 = new Image(63,72); 
	preload_image1.src="http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/newsroll.gif"; 
	preload_image2 = new Image(63,72); 
	preload_image2.src="http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/aboutroll.gif"; 
	preload_image3 = new Image(63,72); 
	preload_image3.src="http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/malesroll.gif";
	preload_image4 = new Image(63,72); 
	preload_image4.src="http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/femalesroll.gif";
	preload_image5 = new Image(63,72); 
	preload_image5.src="http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/salerole.gif";
	preload_image6 = new Image(63,72); 
	preload_image6.src="http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/productsroll.gif";
	preload_image7 = new Image(63,72); 
	preload_image7.src="http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/contactroll.gif";
	preload_image8 = new Image(63,72); 
	preload_image8.src="http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/linksroll.gif";
}
$(document).ready(function() {
		//Sets up the main menu			
		$(".news").css("backgroundImage", "url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/news.gif')").hover(function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/newsroll.gif')");
			}, function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/news.gif')");
		});
		$(".about").css("backgroundImage", "url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/about.gif')").hover(function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/aboutroll.gif')");
			}, function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/about.gif')");
		});
		$(".males").css("backgroundImage", "url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/males.gif')").hover(function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/malesroll.gif')");
			}, function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/males.gif')");
		});
		$(".females").css("backgroundImage", "url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/females.gif')").hover(function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/femalesroll.gif')");
			}, function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/females.gif')");
		});
		$(".sale").css("backgroundImage", "url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/sale.gif')").hover(function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/salerole.gif')");
			}, function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/sale.gif')");
		});
		$(".products").css("backgroundImage", "url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/products.gif')").hover(function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/productsroll.gif')");
			}, function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/products.gif')");
		});
		$(".contact").css("backgroundImage", "url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/contact.gif')").hover(function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/contactroll.gif')");
			}, function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/contact.gif')");
		});
		$(".links").css("backgroundImage", "url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/links.gif')").hover(function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/linksroll.gif')");
			}, function(){
				$(this).css("backgroundImage","url('http://www.agapellandllamas.com/lcp/wp-content/themes/agapeLcp/images/menu/links.gif')");
		});
		//Add the "rel=lightbox" thing to linked images
		$("#catWrapper a img").parent("a").toggle(function(){ 
				$(this.firstChild).attr("rel", $(this.firstChild).attr("src"));
				$(this.firstChild).attr("src", $(this).attr("href")); 
				$(this.firstChild).fadeIn("fast");
				return false; 
		}, function(){
				$(this.firstChild).attr("src",$(this.firstChild).attr("rel"));
				$(this.firstChild).fadeIn("fast");
				return false;
		});

});