/* loading script for AJAX - all pages */
$(function () {
$('header').load('/includes/header.txt');
$('nav').load('/includes/nav3.txt');
$('footer').load('/includes/footer.txt');
/* nav is relative links
nav2 is artist list
*/
});
/* Attention!!! check link after uploads */
$(function () {
	$('header').click(function () {
  window.location="/index.html";
  });
});
//navigation by header
//changes to link pointer
$(function ( ){
	$('header').hover(function () {
  $(this).css('cursor','pointer');
  });
});

/* cheque page link */
$(function(){
$('.chqicon').click(function(){
window.location="/cheque-orders.html";
});
});
