$(document).ready(function() {

	$("#contactBtn").live('click', function() {
		var display = $("#contactDiv").css('display');
		if (display == "none") {
			$("#contactDiv").show(400);
			$("#contactDiv2").show(400);
			$("#contactBtn").html("Contact [x]");
		}
		else {
			$("#contactDiv").hide(400);
			$("#contactDiv2").hide(400);
			$("#contactBtn").html("Contact");
		}
	});
	
	$(".colouredBox").live('mouseover', function() {
		var colourName = $(this).attr('item');
		$("body").css("background-image","url(images/bg_" + colourName + ".jpg)");
	});
	
	$.fn.extend({ 
		disableSelection: function() { 
			this.each(function() { 
				if (typeof this.onselectstart != 'undefined') {
					this.onselectstart = function() { return false; };
				}
				else if (typeof this.style.MozUserSelect != 'undefined') {
					this.style.MozUserSelect = 'none';
				}
				else {
					this.onmousedown = function() { return false; };
				}
			}); 
		} 
	});

	$("#contactBtn,#bogdanbBtn").disableSelection();          
	
});
