$(document).ready(function(){
	i = Math.floor(Math.random()*3) + 1
	$('.bg').attr( 'src', 'images/bg'+i+'.jpg' );
	$('.link').addClass( 'contact'+i );
	
	changeBgsize();
	
	$('body').delay(500).fadeIn('slow', function() {
		$(document).pngFix();
	});
	
	$(window).resize(function() {
		changeBgsize();
	});
});

function changeBgsize() {
	var bgimg = $(".bg");
	if ( $(window).width() / $(window).height() >= 2000 / 1300 ) {
		bgimg.addClass('w100');
		bgimg.removeClass('h100');
	} else {
		bgimg.addClass('h100');
		bgimg.removeClass('w100');
	}
	
	$('.link').css( 'margin-top', ( $(window).height() - 130 ) + 'px' );
}



