aboutsummaryrefslogtreecommitdiff
path: root/h-source/Examples/Views/post2/header.php
blob: 0d9a131ad7c164d8cbc7c4001cd9fe7863f626c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<html>

<header>

<title>prova</title>
<link rel="stylesheet" type="text/css" href="<?php echo url::getRoot('public/css/style.css');?>"></style>
<link rel="stylesheet" type="text/css" href="<?php echo url::getRoot('public/css/mainmenu.css');?>"></style>
<link rel="stylesheet" type="text/css" href="<?php echo url::getRoot('public/css/form.css');?>"></style>
<script type="text/javascript" src="<?php echo url::getRoot('external/jquery/jquery-1.3.2.js');?>"></script>

<script>
$(document).ready(function(){

	$("ul#menuBlock li").mouseover(function () {
		$(this).children().css({'display' : 'block'});
	});

	$("ul#menuBlock li").mouseout(function () {
		$('ul#menuBlock li ul').css({'display' : 'none'});
	});

});
</script>

</header>

<body>

<div id="container">