/*jslint undef: true, browser: true, indent: 2 */
/*global jQuery, $, window */

$("document").ready(function () {
  
  // make smooth scroll
  $.localScroll();     
  
  // open external links in new windows
  // $("a[@rel='external']").click(function () { 
  //   window.open($(this).attr('href'));
  //   return false; 
  // });
  
  /*
  $(".hitta").colorbox({width:"900px", height:"80%", iframe:true, close:"x"});
  $(".boende").colorbox({width:"900px", height:"80%", iframe:true, close:"x"});
  */
  $(".highlight a img").fadeTo("slow", 0.9);
  $(".highlight").mouseenter(function () {
    $(this).children("a").children("img").fadeTo("fast", 1.0);
  });
  $(".highlight").mouseleave(function () {
    $(this).children("a").children("img").fadeTo("fast", 0.9);
  });
  
  $(".item a img").fadeTo("slow", 0.9);
  $(".item").mouseenter(function () {
    $(this).children("a").children("img").fadeTo("fast", 1.0);
  });
  $(".item").mouseleave(function () {
    $(this).children("a").children("img").fadeTo("fast", 0.9);
  });
  
  

});

