﻿
$(document).ready(function () {

    $('.LinkTarget').each(function () {

        var target = $(this).children('a').attr("target", "_blank");

    });

$(".ProductsSummary_List li").append("<div style='clear:both;' />")
    $(".AnnouncementsSummary_List li").append("<div style='clear:both;' />")
    $(".ReferansSummary_List li").append("<div style='clear:both;' />")
    $(".Referans_List li").append("<div style='clear:both;' />")
    $(".Announcements_List li").append("<div style='clear:both;' />")
    $(".Products_List li").append("<div style='clear:both;' />")
    $(".Product_List li").append("<div style='clear:both;' />")
    $(".Announcement_List li").append("<div style='clear:both;' />")
    $(".References_List li").append("<div style='clear:both;' />")
    $(".BoardOfDirectors_List li").append("<div style='clear:both;' />")


    $(".Field_CompanyPhone1").append("<div style='clear:both;' />")
    $(".Field_CompanyPhone2").append("<div style='clear:both;' />")
    $(".Field_CompanyFax1").append("<div style='clear:both;' />")
    $(".Field_CompanyEmail").append("<div style='clear:both;' />")
    $(".Field_CompanyAddress").append("<div style='clear:both;' />")
    $(".Field_Latitude").append("<div style='clear:both;' />")

    $(".BannerWrapper table").attr("cellpadding", "0");
    $(".BannerWrapper table").attr("cellspacing", "0");


$('.FAQRelation_List li .Field_Answers').hide();

        $('.FAQRelation_List li .Field_Title').toggle(function () {
            $(this).next('.Field_Answers').show('slow');
            $(this).css("background-color", "#f6f6f6");
            $(this).css("border-bottom", "none");
            $(this).css("background-image", "url('/_layouts/OWSAssets/CommonAssets/Images/FAQCloseItemIcon.png')");
        }, function () {
            $(this).next('.Field_Answers').hide('slow');
            $(this).css("background-color", "#ffffff");
            $(this).css("border-bottom", "solid 1px #e4e4e4");
            $(this).css("background-image", "url('/_layouts/OWSAssets/CommonAssets/Images/FAQItemICon.png')");
        });




});
