//var $j = jQuery.noConflict();

$(document).ready(function() {

$('ul.top-tabs li').css('cursor', 'pointer');

$('ul.top-tabs li').click(function(){
	var thisClass = this.className.slice(0,2);
	$('div.s1').hide();
	$('div.s2').hide();
	$('div.s3').hide();
	$('div.s4').hide();
	$('div.' + thisClass).show();
	$('ul.top-tabs li').removeClass('active');
	$(this).addClass('active');
	});

});


function show(file, width, height)
{
 
 //window.open(file, "_blank", "width="+width+",height="+height+",titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes\no ,resizable=no");
 window.open(file, "_blank", "width="+width+",height="+height+",titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes ,resizable=no");
} 








