$(function(){
	var gallery = $("#gallery img").length;
	if(gallery == 0) {
		setInterval(function(){
			var round = Math.floor(Math.random()*urls.length);
			$('#pc img').attr('src', urls[round]);
		}, 3500);
	}


	$('#gallery a').click(function(){
		var url = $(this).attr('href');

		$('<img src="i/loading.gif" id="loading" alt="" />').prependTo('#pc');
		$('<img src="' + url + '" alt="" />').appendTo('#preloader').load(function(){
			$('#pc').children().remove();
			$(this).hide().appendTo('#pc').fadeIn('normal');
		});
		
		return false
	});
	
	$('.contact').find('input.tx,textarea').each(function(){
		$(this).attr('def', $(this).attr('value'));
	}).focus(function(){
		if($(this).val() == $(this).attr('def')) {
			$(this).val('');
		}
	}).blur(function(){
		if($(this).val() == '') {
			$(this).val($(this).attr('def'));
		}
	});
		
});

