// on page load
jQuery(window).bind("load", function() {
	// jQuery("div#slider1").codaSlider()
	// removed to prevent duplicate tabs on homepage
	jQuery("div#slider2").codaSliderHome()
	// modified codaslider js to auto adjust height to content
	// had to hardcode the tabs to allow for multiple sliders on page
	// make list into equal height 2 columns
	// $('ul.2column').makeacolumnlists({cols:2,colWidth:0,equalHeight:false,startN:1});
	// load Choose Your Role title
	$("#chooseRole img")
		// drop into place 
		.animate({top:"-50px"}, 170).animate({top:"155px"}, 200)
		// second jump
		.animate({top:"100px"}, 200).animate({top:"155px"}, 175)
		// third jump
		.animate({top:"135px"}, 125).animate({top:"155px"}, 120);
});
// on hover of choose role text
$(document).ready(function(){
    $("#chooseRole").hover(function(){
        $("#chooseRole img")
            // first jump 
            .animate({left:"10px"}, 200).animate({left:"20px"}, 100)
            .animate({left:"30px"}, 100).animate({left:"20px"}, 200)
    });
}); 
//
$(document).ready(function(){
  $("#industryList ol h3 a").bigTarget();
});

