For a Wordpress Theme I know javascript files (ending in .js) must be included using wp_enqueue_script in functions.php but how do I include additional javascript code? For example, say I need to add this:
jQuery(function($){
jQuery.supersized({
slides:
[
'http://google.com',
'http://google.co.uk'
]
});
});
Where would I put this? Do I put it within <script> tags in the header.php?