jQuery.noConflict();

function showPage(filePath, divTarget)
 {
	 jQuery(document).ready(function($) {
		  $.ajaxSetup ({  
        cache: true  
     }); 
		   $("#"+divTarget).css({display:"block"});									 
	       $("#"+divTarget).load(filePath);
	});
    // ../common/view.php
 }
 
 

