| 1 |
<?php
|
| 2 |
/**
|
| 3 |
** moo fx pack
|
| 4 |
**/
|
| 5 |
drupal_add_js(path_to_theme() . '/scripts/prototype.lite.js');
|
| 6 |
drupal_add_js(path_to_theme() . '/scripts/moo.fx.js');
|
| 7 |
drupal_add_js(path_to_theme() . '/scripts/moo.fx.pack.js');
|
| 8 |
drupal_add_js(path_to_theme() . '/scripts/site.js');
|
| 9 |
|
| 10 |
drupal_add_js(path_to_theme() . '/scripts/tooltip.js');
|
| 11 |
|
| 12 |
drupal_set_html_head('<!--[if lt IE 7]>
|
| 13 |
<script defer type="text/javascript" src="' . base_path() . path_to_theme() . '/scripts/png.js"></script>
|
| 14 |
<style type="text/css" media="all">@import "' . base_path() . path_to_theme() . '/ie.css";</style>
|
| 15 |
<![endif]-->');
|
| 16 |
|
| 17 |
/**
|
| 18 |
** set some styles
|
| 19 |
**/
|
| 20 |
drupal_set_html_head('<style type="text/css" media="all">@import "' . base_path() . path_to_theme() . '/style.css";</style>');
|
| 21 |
|
| 22 |
?>
|