$(document).ready(function() {
	var sPath = window.location.pathname;
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	if (sPage != 'index.php' && sPage != '') {
		$('#top_logo').click(function() {
			window.location.href = 'index.php';
		});
		$('#top_logo').addClass('cursor');
	}

	$('ul.sf-menu').superfish({
		disableHI: true,
		delay: 100,
		speed: 'fast',
		dropShadows: false,
		autoArrows: false
	});

	$('a[href^=http://wesign.com]').click(function(){
		var w = window.open($(this).attr('href'), 'wesign');
		w.focus();
		return false;
	});

	$("a[href$=.pdf]").click(function(){
		new_win = window.open(this.href,'pdfwin','resizable,scrollbars');
		if (window.focus) { new_win.focus(); }
		return false;
	});

	$(".votm").colorbox({width:"550px", height:"490px", iframe:true});

});

