$(document).ready(function(){
	//Login-Box
	$("#page #header .headerTop .topCont .left .login .link").click(function() {
		$('#page #header .headerTop .topCont .left .login .loginForms .box').slideDown('slow');
	});
	
	$("#page #header .headerTop .topCont .left .login .loginForms .box .close").click(function() {
		$(this).parent().slideUp('slow');
	});
	
	//Basket-Box
	$('#page #header .headerTop .topCont .right .wk .link').click(function() {
		$('#page #header .headerTop .topCont .right .wk .wkBox .box').slideDown('slow');
	});
	
	$('#page #header .headerTop .topCont .right .wk .wkBox .box .close').click(function() {
		$(this).parent().slideUp('slow');
	});
	
	
	//Last-Seen-Products-Box
	$('#page #header .headerTop .topCont .right .lastseenProduct .link').click(function() {
		$('#page #header .headerTop .topCont .right .lastseenProduct .seenProducts .box').slideDown('slow');
	});
	
	$('#page #header .headerTop .topCont .right .lastseenProduct .seenProducts .box .close').click(function() {
		$(this).parent().slideUp('slow');
	});
});
