// JavaScript Document
jQuery(document).ready(function() {
	$('.buttonWelcome').click(function() {
		$('.welcomeHide').slideToggle('slow');
		return(false);
	});
	$('.requestInfo').click(function() {
		$('.objectRequestDetails').slideToggle('slow');
		$('#contactForm').attr('src','http://www.berkofinepaintings.com/DesktopDefault.aspx?tabid=9&tabindex=8&objectid=' + getUrlVarsFrom(window.location.href)['objectid']);
		return(false);
	});
	$('.moreInfo').click(function() {
		$('#contactBlocForm').slideToggle('slow');
		return(false);
	});
});
