////////////////////////////////////////////////////////////////////////////////
//
// index.js
//
////////////////////////////////////////////////////////////////////////////////
/**
* need jQuery
*/
$(document).ready(function() {
	/**
	* shortcutImage background rollovers
	*/
	$("div#shortcutImage div.items").hover(function() {
		var _id = $(this).attr("id");
		//
		switch(_id) {
			case "shortcutImage_pharma":
				$(this).css("background-position","0px -180px");
			break;
			case "shortcutImage_chemicals":
				$(this).css("background-position","-218px -180px");
			break;
			case "shortcutImage_electronics":
				$(this).css("background-position","-437px -180px");
			break;
			case "shortcutImage_corporation":
				$(this).css("background-position","-655px -180px");
			break;
		}
	},function() {
		$(this).attr("style","");
    });
	/**
	* clear margin
	*/
	$("div#pickupSection div.item:last").css("margin-bottom","0px");
});
