$(function(){
	// Header Contact Fade
	$('#header-contact .trigger').click(function(){ 
		$('#header-contact .holder').fadeIn();
		return false;
	});	
	
	$('#header-contact .close').click(function(){ 
		$('#header-contact .holder').fadeOut();
		return false;
	});
	
	$(".twitter .container").tweet({
        avatar_size: 32,
        count: 1,
        username: "HANSKLINE",
        template: function(i){return i["text"]}
      });
      
    lineWidth();
});

$(window).resize(function(){ 
	lineWidth();
});

function lineWidth(){ 
	var w_width = $(window).width();
	var s_width = $('.shell').width() + 24; 
  	var blank_space = ((w_width - s_width) /2); // 255px = Width of the reminder within the shell
  	$('.left-bg').css('width', blank_space + 'px'); 
}
