$(document).ready(function() {
		
	$('#bp').mouseenter(function() {
		$(this).find('#brick-point-expanded').animate({
			width: 145
		});
	}).mouseout(function() {
		$(this).find('#brick-point-expanded').animate({
			width: 2
		});
	});
	
	$('#mc').mouseenter(function() {
		$(this).find('#martin-cash-expanded').animate({
			width: 145
		});
	}).mouseout(function() {
		$(this).find('#martin-cash-expanded').animate({
			width: 2
		});
	});
	
	
	$('header nav ul').superfish( {
		animation: { opacity: 'show' },
		autoArrows: false,
		dropShadows: false
	});
});
