function thebigq(){
	alert('hell');
	$('#bigq').show();
}

function init(){
	$("#smallq").mouseover(function(){
		$('#bigq').show();
	});
	$("#smallq").mouseout(function(){
		$("#bigq").hide();
	});
}
	
	
jQuery(document).ready(function() {
	init();
});
