// JavaScript Document

/* Flash log */
swfobject.registerObject("logo", "9.0.28", "scripts/expressInstall.swf");

/* Work Detail Slider */
	$(document).ready(function(){	
		$("#slider").easySlider({
controlsShow: false,
vertical: false,
speed: 1500,
auto: true,
pause: 5000,
continuous: true
		});
	});	

/* Homepage Expander */
$(document).ready(function(){
	$(".more").hide();
	$(".toggle").click(function(){
		$(this).next(".more").slideToggle(500);
		$('.repl').replaceWith('');
	});
});


/* NoSpam Settings */
$(document).ready(function(){
$('a.nospam').nospam({
  replaceText: true,
  filterLevel: 'low'
});
});