/**
 * @author DiS
 */
	
	$(document).ready(function(){
		
		$("#selectLayer").hover(function(){
			
			var h = parseInt($("#selectList").show().height()) + 10; //padding
			
			$("#selectLayer").css({marginBottom: -h, top: -h});
			$("#select").addClass("open");
			
		}, function(){
			
			$("#selectList").hide();
			$("#selectLayer").css({marginTop: 0, top: 0});
			$("#select").removeClass("open");
			
		});
		
	});
	