web/archives.php
changeset 989 e4e219f7b12c
parent 536 5dd170a735e9
child 1198 ff4b567d51f2
equal deleted inserted replaced
988:954019f62866 989:e4e219f7b12c
    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