/* * Copyright 2012 soundarapandian * Licensed under the Apache License, Version 2.0 * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ jQuery("document").ready(function() { /*Start: Prevent the default white background on blur of top navigation */ jQuery(".dropdown-menu li a").mousedown(function() { var dropdown = $(this).parents('.dropdown'); var link = dropdown.children(':first-child'); link.css('background-color', "#DB2723"); link.css('color', 'white'); }); /*End: Prevent the default white background on blur of top navigation */ /*Start : Automatically start the slider */ jQuery('.carousel').carousel({ interval: 4000 }); /*End: Automatically start the slider */ });