$('#areas li a').hover(function() {
	var area = $(this).parent().attr('class');
	$('#products ul:visible').stop(true, true).fadeOut();
	$('#' + area).stop(true, true).fadeIn();
	$('#carcass').toggleClass('carcass-round-topside');
}, 
function() {
	return false;
});

$('.product-cuts li').hover(function() {
	var cut = $(this).attr('class');
	$('img.' + cut).show();
}, 
function() {
	var cut = $(this).attr('class');
	$('img.' + cut).hide();
});

$('.hover-img').hover(function(e) {
	$('.wrapper').append('<img class="active-hover" src="' + $(this).attr('href') + '" alt="" />');
	var active_hover_height = $('.active-hover').height();
	var wrapper_height = $('.wrapper').height();
	var mouse_y_pos = e.pageY;
	var final_height = active_hover_height + mouse_y_pos;
	if ( final_height > wrapper_height ) {
		var adjusted_y_pos = wrapper_height - active_hover_height;
		$('.active-hover').css({ 'top': adjusted_y_pos + 'px'});
	} else {
		$('.active-hover').css({ 'top': mouse_y_pos + 'px'});
	}
}, function() {
	$('.active-hover').remove();
});
