Drupal path
<?php
// Get path to module and generate URL to FeaturedPhotographs JS.
$path = drupal_get_path('module', 'aspcarousels');
$FeaturedPhotographsJS = file_create_url($path . '/js/FeaturedPhotographs.js');
// Load JS uncompressed to avoid issues with running Colorbox.
drupal_add_js($FeaturedPhotographsJS, array('preprocess' => FALSE))
?>