$(document).ready(function(){ 	
		
// fixed position sidebar
  var msie6 = $.browser == 'msie' && $.browser.version < 7;
  if ($('#leftcol').length) { //if it's there
	  if (!msie6) { // if ie6 don't touch
		var top = $('#leftcol').offset().top - parseFloat($('#leftcol').css('margin-top').replace(/auto/, 0));
		$(window).scroll(function (event) {
		  var y = $(this).scrollTop();     
		  if (y >= top) {
			$('#leftcol').addClass('fixed');
		  } else {
			$('#leftcol').removeClass('fixed');
		  }
		});
	  }
  }  

// Show Phone
	$('#showphone').click(function() {
	  $('#callform').slideToggle();
	});
	$('#callus').click(function() {
	  $('#phone').slideToggle();
	});

});
