// JavaScript Document

function printHeader(){
	
	document.write('<img src="../img/headerEn.jpg" alt="Alcea.sk" border="0" usemap="#Map"/>'+
				   '<map name="Map" id="Map"><area shape="rect" coords="804,10,884,26" href="../index.html" /></map>');
		
}

function printTopMenu(){
	document.write('<table cellpadding="0" cellspacing="0" width="100%">'+
		'<tr>'+
			'<td width="6"  height="31"><img src="../img/topmenuLeft.jpg" alt="" /></td>'+
			'<td class="topMenuItem">'+
			'<a href="index.html" class="topMenu" style="padding-right:6px;">Hello</a>                    </td>'+
'<td class="topMenuItem"><a href="first-time.html" class="topMenu">'+
				'First time'+
			'</a></td>'+
'<td class="topMenuItem">'+
			'<a href="trips.html" class="topMenu">Trips</a>            </td>'+
'<td class="topMenuItem">'+
			'<a href="price-list.html" class="topMenu">Price list</a>            </td>'+
'<td class="topMenuItem">'+
			'<a href="gallery.html" class="topMenu">Gallery</a>            </td>'+
'<td class="topMenuItem">'+
			'<a href="reservation.php" class="topMenu">Booking</a>            </td>'+
'<td class="topMenuItem" style="background-image:none;"><a href="advices-and-tips.html" class="topMenu">'+
				'Advices and tips'+
			'</a></td>'+
	  '</tr>'+
	'</table>');	
}

function printFooter(){
	document.write(
   '<div class="footerTop">&nbsp;</div>'+
	'<table width="100%" cellpadding="0" cellspacing="0" class="footer">'+
	'<tr>'+
		'<td class="bottomMenuItem"><a href="index.html" class="bottomMenu">Hello</a> </td>'+
		'<td class="bottomMenuItem"><a href="first-time.html" class="bottomMenu">First time</a></td>'+
		'<td class="bottomMenuItem"><a href="trips.html" class="bottomMenu">Trips</a> </td>'+
		'<td class="bottomMenuItem"><a href="price-list.html" class="bottomMenu">Price list</a> </td>'+
		'<td class="bottomMenuItem"><a href="gallery.html" class="bottomMenu">Gallery</a> </td>'+
		'<td class="bottomMenuItem"><a href="reservation.php" class="bottomMenu">Booking</a> </td>'+
		'<td class="bottomMenuItem" ><a href="advices-and-tips.html" class="bottomMenu">Advices and tips</a></td>'+
	  '</tr>'+
  '</table>'+
  '<div id="controlbar" class="highslide-overlay controlbar">'+
	'<a href="#" class="previous" onclick="return hs.previous(this)" title="Previous (left arrow key)"></a>'+
	'<a href="#" class="next" onclick="return hs.next(this)" title="Next (right arrow key)"></a>'+
    '<a href="#" class="highslide-move" onclick="return false" title="Click and drag to move"></a>'+
    '<a href="#" class="close" onclick="return hs.close(this)" title="Close"></a>'+
	'</div>'
  );
}


