var $jq = jQuery.noConflict();
$jq(document).ready(function() {
	// corporate menu switch
	$jq('#corp .block-left li:last-child').addClass('last-child');
	$jq('#corp .block-left li:first-child').addClass('first-child');

	var status_default_txt = $jq('#status').text();
	$jq('#pins a img').hover(
		function() {$jq('#status').text($jq(this).attr('alt'));},
		function() {$jq('#status').text(status_default_txt);}
		);
	});