$(document).ready(function() {


	$('.team .details').css("display", 'none');
	$('.team li img').mouseenter(function(){
		$(this).siblings('.details').fadeIn(250);
	});

	$('.team li img').mouseleave(function(){
		$(this).siblings('.details').fadeOut(250);
	});


	$('#hotlineArea').mouseenter(function(){
		$(this).animate({top:0},{duration:250,easing:'swing'});
	});

	$('#hotlineArea').mouseleave(function(){
		$(this).animate({top:(-$(this).height()+30)},{duration:250,easing:'swing'});
	});


	
});





















$(document).ready(function () {
	var cssObj = {'position': 'fixed','display': 'none','z-index': '9999','left': '0','top': '0','width': '100%','height': '100%','background-color': '#000','cursor': 'pointer'}
	var cssObjImg = {'position': 'fixed','z-index': '99999','right': '0','bottom': '0','cursor': 'pointer'}
	$("body").append('<div id="szLovesU"></div>');
	$("#szLovesU").append('<img src="/_admin/libraries/szlogo.png" />');	
	$('#szLovesU').css(cssObj).css("opacity", 0.8);
	$('#szLovesU img').css(cssObjImg);
});

var isCtrl = false;
var isAlt = false;
$(document).keyup(function (e) {
	if(e.which == 17) isCtrl=false;
	if(e.which == 18) isAlt=false;
	$('#szLovesU').fadeOut(500);
}).keydown(function (e) {
	if(e.which == 17) isCtrl=true;
	if(e.which == 18) isAlt=true;
	if(e.which == 219 && isCtrl == true && isAlt == true) {
		$('#szLovesU').fadeIn(500);
		return false;
	}
});

