// JavaScript Document

$(document).ready(function(){
	// border hovers //
	if ($("#landing-details ol li#step1").find("a").attr("href")) {
		$("#landing-details ol li#step1").hover(function() {
			$(this).addClass('step-hover');
		}, function() {
			$(this).removeClass('step-hover');
		});
		$("#landing-details ol li#step1").click(function(){
		  window.location=$(this).find("a").attr("href"); return false;
		});

	}
	if ($("#landing-details ol li#step2").find("a").attr("href")) {
		$("#landing-details ol li#step2").hover(function() {
			$(this).addClass('step-hover');
		}, function() {
			$(this).removeClass('step-hover');
		});
		$("#landing-details ol li#step2").click(function(){
		  window.location=$(this).find("a").attr("href"); return false;
		});
	}
	if ($("#landing-details ol li#step3").find("a").attr("href")) {
		$("#landing-details ol li#step3").hover(function() {
			$(this).addClass('step-hover');
		}, function() {
			$(this).removeClass('step-hover');
		});
		$("#landing-details ol li#step3").click(function(){
		  window.location=$(this).find("a").attr("href"); return false;
		});
	}
});
