jQuery(document).ready(function() {

jQuery(function()
{
jQuery("div.showAll1 a").click(function(event) {
event.preventDefault();
jQuery("#collapseBox1").slideToggle();
jQuery(this).text(jQuery(this).text() == 'Hide projects in this category' ? 'More projects in this category' : 'Hide projects in this category');
});

jQuery("div.showAll2 a").click(function(event) {
event.preventDefault();
jQuery("#collapseBox2").slideToggle();
jQuery(this).text(jQuery(this).text() == 'Hide projects in this category' ? 'More projects in this category' : 'Hide projects in this category');
});

jQuery("div.showAll3 a").click(function(event) {
event.preventDefault();
jQuery("#collapseBox3").slideToggle();
jQuery(this).text(jQuery(this).text() == 'Hide projects in this category' ? 'More projects in this category' : 'Hide projects in this category');
});

jQuery("div.showAll4 a").click(function(event) {
event.preventDefault();
jQuery("#collapseBox4").slideToggle();
jQuery(this).text(jQuery(this).text() == 'Hide projects in this category' ? 'More projects in this category' : 'Hide projects in this category');
});

jQuery("div#recommend a").click(function(event) {
event.preventDefault();
jQuery("#recommend_form").slideToggle();

});

jQuery.localScroll();


jQuery("p").mouseover(function(event) {
event.preventDefault();
jQuery("div.step").hide();
jQuery("div.step0").show();
});

jQuery("a.step1").mouseover(function(event) {
event.preventDefault();
jQuery("div.step0").hide();
jQuery("div.step").hide();
jQuery("div.step1").fadeIn();
});

jQuery("a.step2").mouseover(function(event) {
event.preventDefault();
jQuery("div.step0").hide();
jQuery("div.step").hide();
jQuery("div.step2").fadeIn();
});


jQuery("a.step3").mouseover(function(event) {
event.preventDefault();
jQuery("div.step0").hide();
jQuery("div.step").hide();
jQuery("div.step3").fadeIn();
});

jQuery("a.step4").mouseover(function(event) {
event.preventDefault();
jQuery("div.step0").hide();
jQuery("div.step").hide();
jQuery("div.step4").fadeIn();
});

jQuery("a.step5").mouseover(function(event) {
event.preventDefault();
jQuery("div.step0").hide();
jQuery("div.step").hide();
jQuery("div.step5").fadeIn();
});

jQuery("a.step6").mouseover(function(event) {
event.preventDefault();
jQuery("div.step0").hide();
jQuery("div.step").hide();
jQuery("div.step6").fadeIn();
});

jQuery("a.step7").mouseover(function(event) {
event.preventDefault();
jQuery("div.step0").hide();
jQuery("div.step").hide();
jQuery("div.step7").fadeIn();
});

jQuery("a.step8").mouseover(function(event) {
event.preventDefault();
jQuery("div.step0").hide();
jQuery("div.step").hide();
jQuery("div.step8").fadeIn();
});

jQuery("a.step9").mouseover(function(event) {
event.preventDefault();
jQuery("div.step0").hide();
jQuery("div.step").hide();
jQuery("div.step9").fadeIn();
});

jQuery("a.step10").mouseover(function(event) {
event.preventDefault();
jQuery("div.step0").hide();
jQuery("div.step").hide();
jQuery("div.step10").fadeIn();
});

jQuery("a.step11").mouseover(function(event) {
event.preventDefault();
jQuery("div.step0").hide();
jQuery("div.step").hide();
jQuery("div.step11").fadeIn();
});

jQuery("a.step12").mouseover(function(event) {
event.preventDefault();
jQuery("div.step0").hide();
jQuery("div.step").hide();
jQuery("div.step12").fadeIn();
});



});

  
});