equal
deleted
inserted
replaced
22 <link rel="stylesheet" href="<?php echo(registry_url('blueprint-plugins-fancy-type','css'));?>" type="text/css" media="screen, projection"/> |
22 <link rel="stylesheet" href="<?php echo(registry_url('blueprint-plugins-fancy-type','css'));?>" type="text/css" media="screen, projection"/> |
23 <link rel="stylesheet" href="<?php echo(registry_url('custom','css'));?>" type="text/css" media="screen, projection"/> |
23 <link rel="stylesheet" href="<?php echo(registry_url('custom','css'));?>" type="text/css" media="screen, projection"/> |
24 |
24 |
25 <!-- JAVASCRIPT --> |
25 <!-- JAVASCRIPT --> |
26 <script type="text/javascript" src="<?php echo(registry_url('jquery','js'));?>"></script> |
26 <script type="text/javascript" src="<?php echo(registry_url('jquery','js'));?>"></script> |
|
27 <?php if( isset($_REQUEST['highlight']) && !empty($_REQUEST['highlight'])) { ?> |
|
28 <script type="text/javascript" src="<?php echo(registry_url('jquery-ui','js'))?>"></script> |
|
29 <?php } ?> |
|
30 |
27 |
31 |
28 <!-- FONT --> |
32 <!-- FONT --> |
29 <link href='<?php echo(registry_url('PT-Sans_Narrow','font'));?>' rel='stylesheet' type='text/css'> |
33 <link href='<?php echo(registry_url('PT-Sans_Narrow','font'));?>' rel='stylesheet' type='text/css'> |
30 <link href='<?php echo(registry_url('PT-Sans','font'));?>' rel='stylesheet' type='text/css'> |
34 <link href='<?php echo(registry_url('PT-Sans','font'));?>' rel='stylesheet' type='text/css'> |
31 |
35 |
38 }).mouseout(function() { |
42 }).mouseout(function() { |
39 $(this).css({'backgroundColor':'#f2f2f2'}); |
43 $(this).css({'backgroundColor':'#f2f2f2'}); |
40 }); |
44 }); |
41 }); |
45 }); |
42 |
46 |
|
47 // hightlight |
|
48 <?php |
|
49 $effect = "highlight"; |
|
50 if(isset($_REQUEST['highlight_effect']) && !empty($_REQUEST['highlight_effect'])) { |
|
51 $effect = $_REQUEST['highlight_effect']; |
|
52 } |
|
53 if( isset($_REQUEST['highlight']) && !empty($_REQUEST['highlight'])) { ?> |
|
54 $(function() { |
|
55 $("<?php echo $_REQUEST['highlight'];?>").delay(1000).effect("<?php echo $effect; ?>", {}, 5000); |
|
56 }); |
|
57 <?php } ?> |
|
58 |
43 var _gaq = _gaq || []; |
59 var _gaq = _gaq || []; |
44 _gaq.push(['_setAccount', 'UA-23581291-1']); |
60 _gaq.push(['_setAccount', 'UA-23581291-1']); |
45 _gaq.push(['_trackPageview']); |
61 _gaq.push(['_trackPageview']); |
46 _gaq.push(['_setAllowAnchor', true]); |
62 _gaq.push(['_setAllowAnchor', true]); |
47 |
63 |